diff options
author | Gleb Balykov/Platform Lab /SRR/Engineer/Samsung Electronics <g.balykov@samsung.com> | 2020-08-25 11:35:27 +0300 |
---|---|---|
committer | 이형주/Common Platform Lab(SR)/Staff Engineer/삼성전자 <leee.lee@samsung.com> | 2020-08-25 17:35:27 +0900 |
commit | 7a0186fe2611e00cd8019adced7af3a269e2e7f4 (patch) | |
tree | e08f2c1712e927ea6adc9087d2ea6d000ffc8bf9 | |
parent | dc5ea62a519533d193194025ad31135262acf0e9 (diff) | |
download | coreclr-7a0186fe2611e00cd8019adced7af3a269e2e7f4.tar.gz coreclr-7a0186fe2611e00cd8019adced7af3a269e2e7f4.tar.bz2 coreclr-7a0186fe2611e00cd8019adced7af3a269e2e7f4.zip |
Build tests in gbs for x86/x64 (#307)submit/tizen/20200901.065247accepted/tizen/unified/20200907.144049
* Add -msse2 compile option
Cherry-pick of https://github.com/dotnet/runtime/pull/33135
* Use prefixed hex format in asm
Cherry-pick of https://github.com/dotnet/runtime/pull/33205
* [Tizen] Add CoreCLR tests build dependencies v3.1.3 for x86
* [Tizen] Add CoreCLR tests build dependencies v3.1.3 for x64
* [Tizen] Allow build of tests for x86/x64
106 files changed, 133579 insertions, 28 deletions
diff --git a/configurecompiler.cmake b/configurecompiler.cmake index 0f4594415e..cf38d53f37 100644 --- a/configurecompiler.cmake +++ b/configurecompiler.cmake @@ -572,6 +572,10 @@ if(CLR_CMAKE_PLATFORM_UNIX_ARM) endif(ARM_SOFTFP) endif(CLR_CMAKE_PLATFORM_UNIX_ARM) +if(CLR_CMAKE_PLATFORM_UNIX_X86) + add_compile_options(-msse2) +endif() + if(CLR_CMAKE_PLATFORM_UNIX_ARM64) if("$ENV{__DistroRid}" MATCHES "tizen.*") add_compile_options(-target aarch64-tizen-linux-gnu) diff --git a/packaging/coreclr.spec b/packaging/coreclr.spec index 0f401015db..01f52826ec 100755 --- a/packaging/coreclr.spec +++ b/packaging/coreclr.spec @@ -4,7 +4,7 @@ %define skipnative 0 %define skipmscorlib 0 -%ifarch %{arm} aarch64 +%ifarch %{arm} aarch64 %{ix86} x86_64 %else %define skiptests 1 %endif @@ -254,10 +254,11 @@ export NUGET_PACKAGES=%{_builddir}/%{name}-%{version}/.packages/ export LD_LIBRARY_PATH=%{_builddir}/%{name}-%{version}/libicu-57.1/ # Build native part of tests as non-portable (i.e. for Tizen) -ROOTFS_DIR=/ ./build-test.sh portablebuild=false %{_barch} cross %{_buildtype} priority1 msbuildonunsupportedplatform skipgenerateversion skipstressdependencies skipmanaged skiprestorepackages /p:__SkipPackageRestore=true skipgeneratelayout +./build-test.sh portablebuild=false %{_barch} %{_buildtype} priority1 msbuildonunsupportedplatform skipgenerateversion skipstressdependencies skipmanaged skiprestorepackages /p:__SkipPackageRestore=true skipgeneratelayout # Build managed part of tests as portable (i.e. for Linux) -ROOTFS_DIR=/ ./build-test.sh %{_barch} cross %{_buildtype} priority1 msbuildonunsupportedplatform skipgenerateversion skipstressdependencies skipnative skiprestorepackages /p:__SkipPackageRestore=true +./build-test.sh %{_barch} %{_buildtype} priority1 msbuildonunsupportedplatform skipgenerateversion skipstressdependencies skipnative skiprestorepackages /p:__SkipPackageRestore=true + %endif %install diff --git a/src/pal/inc/rt/cpp/emmintrin.h b/src/pal/inc/rt/cpp/emmintrin.h index cd633a336a..89e14929ac 100644 --- a/src/pal/inc/rt/cpp/emmintrin.h +++ b/src/pal/inc/rt/cpp/emmintrin.h @@ -40,7 +40,7 @@ typedef char __v16qi __attribute__((__vector_size__(16))); /* Define the default attribute for the functions in this file. */ -#define __DEFAULT_FN_ATTRS __attribute__((__always_inline__, NODEBUG_ATTRIBUTE, __target__("sse2"))) +#define __DEFAULT_FN_ATTRS __attribute__((__always_inline__, NODEBUG_ATTRIBUTE)) /// \brief Performs a bitwise OR of two 128-bit integer vectors. /// diff --git a/src/pal/inc/unixasmmacrosx86.inc b/src/pal/inc/unixasmmacrosx86.inc index 7730505bc3..ae4ad14ea2 100644 --- a/src/pal/inc/unixasmmacrosx86.inc +++ b/src/pal/inc/unixasmmacrosx86.inc @@ -110,7 +110,7 @@ C_FUNC(\Name\()_End): .macro CHECK_STACK_ALIGNMENT #ifdef _DEBUG - test esp, 0Fh + test esp, 0x0F je 0f int3 0: diff --git a/src/vm/i386/asmhelpers.S b/src/vm/i386/asmhelpers.S index 0afc5764db..04fec4d389 100644 --- a/src/vm/i386/asmhelpers.S +++ b/src/vm/i386/asmhelpers.S @@ -99,8 +99,8 @@ LEAF_ENTRY ResetCurrentContext, _TEXT mov ax, [esp - 2] fninit // reset FPU - and ax, 0f00h // preserve precision and rounding control - or ax, 007fh // mask all exceptions + and ax, 0x0f00 // preserve precision and rounding control + or ax, 0x007f // mask all exceptions // preserve precision control mov ax, [esp - 2] @@ -135,7 +135,7 @@ LEAF_ENTRY GetSpecificCpuTypeAsm, _TEXT pushfd pop ecx // Get the EFLAGS mov eax, ecx // Save for later testing - xor ecx, 200000h // Invert the ID bit + xor ecx, 0x200000 // Invert the ID bit push ecx popfd // Save the updated flags pushfd @@ -144,7 +144,7 @@ LEAF_ENTRY GetSpecificCpuTypeAsm, _TEXT push eax popfd // Restore the flags - test ecx, 200000h + test ecx, 0x200000 jz LOCAL_LABEL(Assume486) xor eax, eax @@ -158,12 +158,12 @@ LEAF_ENTRY GetSpecificCpuTypeAsm, _TEXT // filter out everything except family and model // Note that some multi-procs have different stepping number for each proc - and eax, 0ff0h + and eax, 0x0ff0 jmp LOCAL_LABEL(CpuTypeDone) LOCAL_LABEL(Assume486): - mov eax, 0400h // report 486 + mov eax, 0x0400 // report 486 LOCAL_LABEL(CpuTypeDone): pop ebx @@ -178,7 +178,7 @@ LEAF_ENTRY GetSpecificCpuFeaturesAsm, _TEXT pushfd pop ecx // Get the EFLAGS mov eax, ecx // Save for later testing - xor ecx, 200000h // Invert the ID bit. + xor ecx, 0x200000 // Invert the ID bit. push ecx popfd // Save the updated flags. pushfd @@ -187,7 +187,7 @@ LEAF_ENTRY GetSpecificCpuFeaturesAsm, _TEXT push eax popfd // Restore the flags - test ecx, 200000h + test ecx, 0x200000 jz LOCAL_LABEL(CpuFeaturesFail) xor eax, eax diff --git a/src/vm/i386/jithelp.S b/src/vm/i386/jithelp.S index f74039e927..ad30c095d2 100644 --- a/src/vm/i386/jithelp.S +++ b/src/vm/i386/jithelp.S @@ -184,12 +184,12 @@ LOCAL_LABEL(WriteBarrier_ShadowCheckEnd_\rg): PREPARE_EXTERNAL_VAR g_card_table, eax add edx, [eax] pop eax - cmp BYTE PTR [edx], 0FFh + cmp BYTE PTR [edx], 0xFF jne LOCAL_LABEL(WriteBarrier_UpdateCardTable_\rg) ret LOCAL_LABEL(WriteBarrier_UpdateCardTable_\rg): - mov BYTE PTR [edx], 0FFh + mov BYTE PTR [edx], 0xFF ret LOCAL_LABEL(WriteBarrier_NotInHeap_\rg): @@ -351,11 +351,11 @@ LOCAL_LABEL(ByRefWriteBarrier_ShadowCheckEnd): PREPARE_EXTERNAL_VAR g_card_table, eax add ecx, [eax] pop eax - cmp BYTE PTR [ecx], 0FFh + cmp BYTE PTR [ecx], 0xFF jne LOCAL_LABEL(ByRefWriteBarrier_UpdateCardTable) ret LOCAL_LABEL(ByRefWriteBarrier_UpdateCardTable): - mov BYTE PTR [ecx], 0FFh + mov BYTE PTR [ecx], 0xFF ret LOCAL_LABEL(ByRefWriteBarrier_NotInHeap): @@ -551,11 +551,11 @@ LEAF_ENTRY JIT_Dbl2LngP4x87, _TEXT // get some local space sub esp, 8 - #define arg1 [esp + 0Ch] + #define arg1 [esp + 0x0C] fld QWORD PTR arg1 // fetch arg fnstcw WORD PTR arg1 // store FPCW movzx eax, WORD PTR arg1 // zero extend - wide - or ah, 0Ch // turn on OE and DE flags + or ah, 0x0C // turn on OE and DE flags mov DWORD PTR [esp], eax // store new FPCW bits fldcw WORD PTR [esp] // reload FPCW with new bits fistp QWORD PTR [esp] // convert @@ -589,7 +589,7 @@ LEAF_ENTRY JIT_Dbl2LngSSE3, _TEXT // get some local space sub esp, 8 - fld QWORD PTR [esp + 0Ch] // fetch arg + fld QWORD PTR [esp + 0x0C] // fetch arg fisttp QWORD PTR [esp] // convert mov eax, DWORD PTR [esp] // reload FP result mov edx, DWORD PTR [esp + 4] @@ -633,12 +633,12 @@ LEAF_END JIT_Dbl2IntSSE2, _TEXT // LEAF_ENTRY JIT_WriteBarrierReg_PreGrow, _TEXT mov DWORD PTR [edx], ecx - cmp ecx, 0F0F0F0F0h + cmp ecx, 0xF0F0F0F0 jb LOCAL_LABEL(NoWriteBarrierPre) shr edx, 10 nop // padding for alignment of constant - cmp BYTE PTR [edx + 0F0F0F0F0h], 0FFh + cmp BYTE PTR [edx + 0xF0F0F0F0], 0xFF jne LOCAL_LABEL(WriteBarrierPre) LOCAL_LABEL(NoWriteBarrierPre): @@ -647,7 +647,7 @@ LOCAL_LABEL(NoWriteBarrierPre): nop // padding for alignment of constant LOCAL_LABEL(WriteBarrierPre): - mov BYTE PTR [edx+0F0F0F0F0h], 0FFh + mov BYTE PTR [edx+0xF0F0F0F0], 0xFF ret LEAF_END JIT_WriteBarrierReg_PreGrow, _TEXT @@ -663,14 +663,14 @@ LEAF_END JIT_WriteBarrierReg_PreGrow, _TEXT .align 4 LEAF_ENTRY JIT_WriteBarrierReg_PostGrow, _TEXT mov DWORD PTR [edx], ecx - cmp ecx, 0F0F0F0F0h + cmp ecx, 0xF0F0F0F0 jb LOCAL_LABEL(NoWriteBarrierPost) - cmp ecx, 0F0F0F0F0h + cmp ecx, 0xF0F0F0F0 jae LOCAL_LABEL(NoWriteBarrierPost) shr edx, 10 nop // padding for alignment of constant - cmp BYTE PTR [edx + 0F0F0F0F0h], 0FFh + cmp BYTE PTR [edx + 0xF0F0F0F0], 0xFF jne LOCAL_LABEL(WriteBarrierPost) LOCAL_LABEL(NoWriteBarrierPost): @@ -679,7 +679,7 @@ LOCAL_LABEL(NoWriteBarrierPost): nop // padding for alignment of constant LOCAL_LABEL(WriteBarrierPost): - mov BYTE PTR [edx + 0F0F0F0F0h], 0FFh + mov BYTE PTR [edx + 0xF0F0F0F0], 0xFF ret LEAF_END JIT_WriteBarrierReg_PostGrow,_TEXT @@ -701,7 +701,7 @@ LEAF_END JIT_PatchedWriteBarrierGroup, _TEXT .align 8 LEAF_ENTRY JIT_WriteBarrier\rg, _TEXT // Just allocate space that will be filled in at runtime - .space 0CCH, 48 + .space 0xCC, 48 LEAF_END JIT_WriteBarrier\rg, _TEXT .endm diff --git a/tests/src/Common/build_against_pkg_dependencies/obj-linux-x64/build_against_pkg_dependencies.csproj.nuget.cache b/tests/src/Common/build_against_pkg_dependencies/obj-linux-x64/build_against_pkg_dependencies.csproj.nuget.cache new file mode 100644 index 0000000000..03702935b6 --- /dev/null +++ b/tests/src/Common/build_against_pkg_dependencies/obj-linux-x64/build_against_pkg_dependencies.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "RhTbCeVq7VlC2aRFueKkF1umcAuT4UT4oowEJ6tjgh5aZqHYCyGoIqV5A75KjL3Xl5UGfGATnZk9N0WoXzBhuQ==", + "success": true +}
\ No newline at end of file diff --git a/tests/src/Common/build_against_pkg_dependencies/obj-linux-x64/build_against_pkg_dependencies.csproj.nuget.dgspec.json b/tests/src/Common/build_against_pkg_dependencies/obj-linux-x64/build_against_pkg_dependencies.csproj.nuget.dgspec.json new file mode 100644 index 0000000000..4eb9ba87c5 --- /dev/null +++ b/tests/src/Common/build_against_pkg_dependencies/obj-linux-x64/build_against_pkg_dependencies.csproj.nuget.dgspec.json @@ -0,0 +1,72 @@ +{ + "format": 1, + "restore": { + "/home/z/Dev/coreclr-sec/tests/src/Common/build_against_pkg_dependencies/build_against_pkg_dependencies.csproj": {} + }, + "projects": { + "/home/z/Dev/coreclr-sec/tests/src/Common/build_against_pkg_dependencies/build_against_pkg_dependencies.csproj": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/Common/build_against_pkg_dependencies/build_against_pkg_dependencies.csproj", + "projectName": "build_against_pkg_dependencies", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/Common/build_against_pkg_dependencies/build_against_pkg_dependencies.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/Common/build_against_pkg_dependencies/obj-linux-x64", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netcoreapp3.1": { + "dependencies": { + "Microsoft.NETCore.ILAsm": { + "target": "Package", + "version": "[3.0.0-rc2.19462.5, )" + }, + "Microsoft.NETCore.ILDAsm": { + "target": "Package", + "version": "[3.0.0-rc2.19462.5, )" + }, + "Microsoft.NETCore.Jit": { + "target": "Package", + "version": "[3.0.0-rc2.19462.5, )" + }, + "Microsoft.NETCore.Runtime.CoreCLR": { + "target": "Package", + "version": "[3.0.0-rc2.19462.5, )" + }, + "Microsoft.NETCore.TestHost": { + "target": "Package", + "version": "[3.0.0-rc2.19462.5, )" + } + }, + "imports": [ + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x64": { + "#import": [] + } + } + } + } +}
\ No newline at end of file diff --git a/tests/src/Common/build_against_pkg_dependencies/obj-linux-x64/build_against_pkg_dependencies.csproj.nuget.g.props b/tests/src/Common/build_against_pkg_dependencies/obj-linux-x64/build_against_pkg_dependencies.csproj.nuget.g.props new file mode 100644 index 0000000000..a9eafdb0ac --- /dev/null +++ b/tests/src/Common/build_against_pkg_dependencies/obj-linux-x64/build_against_pkg_dependencies.csproj.nuget.g.props @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> + <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> + <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> + <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageRoot> + <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageFolders> + <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.4.0</NuGetToolVersion> + </PropertyGroup> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/Common/build_against_pkg_dependencies/obj-linux-x64/build_against_pkg_dependencies.csproj.nuget.g.targets b/tests/src/Common/build_against_pkg_dependencies/obj-linux-x64/build_against_pkg_dependencies.csproj.nuget.g.targets new file mode 100644 index 0000000000..53cfaa19b1 --- /dev/null +++ b/tests/src/Common/build_against_pkg_dependencies/obj-linux-x64/build_against_pkg_dependencies.csproj.nuget.g.targets @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/Common/build_against_pkg_dependencies/obj-linux-x64/project.assets.json b/tests/src/Common/build_against_pkg_dependencies/obj-linux-x64/project.assets.json new file mode 100644 index 0000000000..89941e9827 --- /dev/null +++ b/tests/src/Common/build_against_pkg_dependencies/obj-linux-x64/project.assets.json @@ -0,0 +1,344 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v3.1": { + "Microsoft.NETCore.ILAsm/3.0.0-rc2.19462.5": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Runtime.CoreCLR": "3.0.0-rc2.19462.5" + } + }, + "Microsoft.NETCore.ILDAsm/3.0.0-rc2.19462.5": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Runtime.CoreCLR": "3.0.0-rc2.19462.5" + } + }, + "Microsoft.NETCore.Jit/3.0.0-rc2.19462.5": { + "type": "package" + }, + "Microsoft.NETCore.Runtime.CoreCLR/3.0.0-rc2.19462.5": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Jit": "3.0.0-rc2.19462.5" + }, + "compile": { + "ref/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.TestHost/3.0.0-rc2.19462.5": { + "type": "package" + } + }, + ".NETCoreApp,Version=v3.1/linux-x64": { + "Microsoft.NETCore.ILAsm/3.0.0-rc2.19462.5": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Runtime.CoreCLR": "3.0.0-rc2.19462.5", + "runtime.linux-x64.Microsoft.NETCore.ILAsm": "3.0.0-rc2.19462.5" + } + }, + "Microsoft.NETCore.ILDAsm/3.0.0-rc2.19462.5": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Runtime.CoreCLR": "3.0.0-rc2.19462.5", + "runtime.linux-x64.Microsoft.NETCore.ILDAsm": "3.0.0-rc2.19462.5" + } + }, + "Microsoft.NETCore.Jit/3.0.0-rc2.19462.5": { + "type": "package", + "dependencies": { + "runtime.linux-x64.Microsoft.NETCore.Jit": "3.0.0-rc2.19462.5" + } + }, + "Microsoft.NETCore.Runtime.CoreCLR/3.0.0-rc2.19462.5": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Jit": "3.0.0-rc2.19462.5", + "runtime.linux-x64.Microsoft.NETCore.Runtime.CoreCLR": "3.0.0-rc2.19462.5" + }, + "compile": { + "ref/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.TestHost/3.0.0-rc2.19462.5": { + "type": "package", + "dependencies": { + "runtime.linux-x64.Microsoft.NETCore.TestHost": "3.0.0-rc2.19462.5" + } + }, + "runtime.linux-x64.Microsoft.NETCore.ILAsm/3.0.0-rc2.19462.5": { + "type": "package", + "native": { + "runtimes/linux-x64/native/ilasm": {} + } + }, + "runtime.linux-x64.Microsoft.NETCore.ILDAsm/3.0.0-rc2.19462.5": { + "type": "package", + "native": { + "runtimes/linux-x64/native/ildasm": {} + } + }, + "runtime.linux-x64.Microsoft.NETCore.Jit/3.0.0-rc2.19462.5": { + "type": "package", + "native": { + "runtimes/linux-x64/native/libclrjit.so": {} + } + }, + "runtime.linux-x64.Microsoft.NETCore.Runtime.CoreCLR/3.0.0-rc2.19462.5": { + "type": "package", + "compile": { + "ref/netstandard1.0/_._": {} + }, + "native": { + "runtimes/linux-x64/native/SOS_README.md": {}, + "runtimes/linux-x64/native/System.Globalization.Native.so": {}, + "runtimes/linux-x64/native/System.Private.CoreLib.dll": {}, + "runtimes/linux-x64/native/createdump": {}, + "runtimes/linux-x64/native/libcoreclr.so": {}, + "runtimes/linux-x64/native/libcoreclrtraceptprovider.so": {}, + "runtimes/linux-x64/native/libdbgshim.so": {}, + "runtimes/linux-x64/native/libmscordaccore.so": {}, + "runtimes/linux-x64/native/libmscordbi.so": {} + } + }, + "runtime.linux-x64.Microsoft.NETCore.TestHost/3.0.0-rc2.19462.5": { + "type": "package", + "native": { + "runtimes/linux-x64/native/corerun": {} + } + } + } + }, + "libraries": { + "Microsoft.NETCore.ILAsm/3.0.0-rc2.19462.5": { + "sha512": "WR8r/mVE7e22K0b05vnwxzjWXeNs9rTSj8S8x5L8p7+lj1ksfH3Wv6xK7YLsoidDCSzbpoKPfmxW2k0v+2K1og==", + "type": "package", + "path": "microsoft.netcore.ilasm/3.0.0-rc2.19462.5", + "files": [ + ".nupkg.metadata", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "microsoft.netcore.ilasm.3.0.0-rc2.19462.5.nupkg.sha512", + "microsoft.netcore.ilasm.nuspec", + "runtime.json", + "version.txt" + ] + }, + "Microsoft.NETCore.ILDAsm/3.0.0-rc2.19462.5": { + "sha512": "pufrzH7mWeeBhfjRL6DAM52mL39RuIsBf0NbG+WDyq8F3QGfxlYv8XKmATEtDxGrK/qnk/BgPPhH58/bZ8mang==", + "type": "package", + "path": "microsoft.netcore.ildasm/3.0.0-rc2.19462.5", + "files": [ + ".nupkg.metadata", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "microsoft.netcore.ildasm.3.0.0-rc2.19462.5.nupkg.sha512", + "microsoft.netcore.ildasm.nuspec", + "runtime.json", + "version.txt" + ] + }, + "Microsoft.NETCore.Jit/3.0.0-rc2.19462.5": { + "sha512": "o+MnVf51ymHdPWAVsHJ8VAsO9DRxTNTQRvRsnFLd5dPhYb6tYosuP4++hC9z4x7HRacLwaClZlg5iE6YOiiHFA==", + "type": "package", + "path": "microsoft.netcore.jit/3.0.0-rc2.19462.5", + "files": [ + ".nupkg.metadata", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "microsoft.netcore.jit.3.0.0-rc2.19462.5.nupkg.sha512", + "microsoft.netcore.jit.nuspec", + "runtime.json", + "version.txt" + ] + }, + "Microsoft.NETCore.Runtime.CoreCLR/3.0.0-rc2.19462.5": { + "sha512": "6lB9bdnyNuQXVXfrCpTb5a0m1qf5PgQMB8BrXBuu+ZlD70pH8cPrRiPpVAmpd0D3eYkPUz9XfR6hfhATs6gjTg==", + "type": "package", + "path": "microsoft.netcore.runtime.coreclr/3.0.0-rc2.19462.5", + "files": [ + ".nupkg.metadata", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "microsoft.netcore.runtime.coreclr.3.0.0-rc2.19462.5.nupkg.sha512", + "microsoft.netcore.runtime.coreclr.nuspec", + "ref/netstandard1.0/_._", + "runtime.json", + "version.txt" + ] + }, + "Microsoft.NETCore.TestHost/3.0.0-rc2.19462.5": { + "sha512": "a2J8OzJPMXxw3H1R7R4DG6XNn/vRCqw1HCpOtwUtaQ5lmYy6wQq+d2hrrmhlTr9j8QQec9Mi8E9u+M3L0azHkA==", + "type": "package", + "path": "microsoft.netcore.testhost/3.0.0-rc2.19462.5", + "files": [ + ".nupkg.metadata", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "microsoft.netcore.testhost.3.0.0-rc2.19462.5.nupkg.sha512", + "microsoft.netcore.testhost.nuspec", + "runtime.json", + "version.txt" + ] + }, + "runtime.linux-x64.Microsoft.NETCore.ILAsm/3.0.0-rc2.19462.5": { + "sha512": "7NcK2ZBfHU8cfe/89MyyHOiJPXALjkigrtRuBo2cPhCoELle5h84lXt/wXC6ohG6o3JASNCIIyETQaAF8rFYlA==", + "type": "package", + "path": "runtime.linux-x64.microsoft.netcore.ilasm/3.0.0-rc2.19462.5", + "files": [ + ".nupkg.metadata", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.linux-x64.microsoft.netcore.ilasm.3.0.0-rc2.19462.5.nupkg.sha512", + "runtime.linux-x64.microsoft.netcore.ilasm.nuspec", + "runtimes/linux-x64/native/ilasm", + "version.txt" + ] + }, + "runtime.linux-x64.Microsoft.NETCore.ILDAsm/3.0.0-rc2.19462.5": { + "sha512": "58KDRBBin6A/FSCTNHJybN1WYrEBImpWC+Ya1UwTU8eMCHBykA2PUrhTCVadkRjLYKeWOv54vRt4dAR5p35RyA==", + "type": "package", + "path": "runtime.linux-x64.microsoft.netcore.ildasm/3.0.0-rc2.19462.5", + "files": [ + ".nupkg.metadata", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.linux-x64.microsoft.netcore.ildasm.3.0.0-rc2.19462.5.nupkg.sha512", + "runtime.linux-x64.microsoft.netcore.ildasm.nuspec", + "runtimes/linux-x64/native/ildasm", + "version.txt" + ] + }, + "runtime.linux-x64.Microsoft.NETCore.Jit/3.0.0-rc2.19462.5": { + "sha512": "Za4WoV6KCsv5Ip/A1NVu1Np0BMs0d1so8NrUXX16vDg8V9INileLeszccatL+9/BU4ysLft/0QcjPQIt7ue/OA==", + "type": "package", + "path": "runtime.linux-x64.microsoft.netcore.jit/3.0.0-rc2.19462.5", + "files": [ + ".nupkg.metadata", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.linux-x64.microsoft.netcore.jit.3.0.0-rc2.19462.5.nupkg.sha512", + "runtime.linux-x64.microsoft.netcore.jit.nuspec", + "runtimes/linux-x64/native/libclrjit.so", + "version.txt" + ] + }, + "runtime.linux-x64.Microsoft.NETCore.Runtime.CoreCLR/3.0.0-rc2.19462.5": { + "sha512": "7XBY1khTTtylvFHEXPGwPx27ILBpHOUmJvnbe99fZxxj+HkaMDoCjzY2thlZeOWx1nlUpEErXMqupdtaoA9VJw==", + "type": "package", + "path": "runtime.linux-x64.microsoft.netcore.runtime.coreclr/3.0.0-rc2.19462.5", + "hasTools": true, + "files": [ + ".nupkg.metadata", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard1.0/_._", + "runtime.linux-x64.microsoft.netcore.runtime.coreclr.3.0.0-rc2.19462.5.nupkg.sha512", + "runtime.linux-x64.microsoft.netcore.runtime.coreclr.nuspec", + "runtimes/linux-x64/il/System.Private.CoreLib.dll", + "runtimes/linux-x64/native/SOS_README.md", + "runtimes/linux-x64/native/System.Globalization.Native.so", + "runtimes/linux-x64/native/System.Private.CoreLib.dll", + "runtimes/linux-x64/native/createdump", + "runtimes/linux-x64/native/libcoreclr.so", + "runtimes/linux-x64/native/libcoreclrtraceptprovider.so", + "runtimes/linux-x64/native/libdbgshim.so", + "runtimes/linux-x64/native/libmscordaccore.so", + "runtimes/linux-x64/native/libmscordbi.so", + "tools/crossgen", + "version.txt" + ] + }, + "runtime.linux-x64.Microsoft.NETCore.TestHost/3.0.0-rc2.19462.5": { + "sha512": "X9xDqu9JYWmntoUufSoWlYxDmqHmYzqxJei3WeswnjhrGQjjhXXK/6qDdKJVgTa5D0DavJhkxe+DI2wOsAA+jQ==", + "type": "package", + "path": "runtime.linux-x64.microsoft.netcore.testhost/3.0.0-rc2.19462.5", + "files": [ + ".nupkg.metadata", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.linux-x64.microsoft.netcore.testhost.3.0.0-rc2.19462.5.nupkg.sha512", + "runtime.linux-x64.microsoft.netcore.testhost.nuspec", + "runtimes/linux-x64/native/corerun", + "version.txt" + ] + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v3.1": [ + "Microsoft.NETCore.ILAsm >= 3.0.0-rc2.19462.5", + "Microsoft.NETCore.ILDAsm >= 3.0.0-rc2.19462.5", + "Microsoft.NETCore.Jit >= 3.0.0-rc2.19462.5", + "Microsoft.NETCore.Runtime.CoreCLR >= 3.0.0-rc2.19462.5", + "Microsoft.NETCore.TestHost >= 3.0.0-rc2.19462.5" + ] + }, + "packageFolders": { + "/home/z/Dev/coreclr-sec/.packages": {} + }, + "project": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/Common/build_against_pkg_dependencies/build_against_pkg_dependencies.csproj", + "projectName": "build_against_pkg_dependencies", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/Common/build_against_pkg_dependencies/build_against_pkg_dependencies.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/Common/build_against_pkg_dependencies/obj-linux-x64", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netcoreapp3.1": { + "dependencies": { + "Microsoft.NETCore.ILAsm": { + "target": "Package", + "version": "[3.0.0-rc2.19462.5, )" + }, + "Microsoft.NETCore.ILDAsm": { + "target": "Package", + "version": "[3.0.0-rc2.19462.5, )" + }, + "Microsoft.NETCore.Jit": { + "target": "Package", + "version": "[3.0.0-rc2.19462.5, )" + }, + "Microsoft.NETCore.Runtime.CoreCLR": { + "target": "Package", + "version": "[3.0.0-rc2.19462.5, )" + }, + "Microsoft.NETCore.TestHost": { + "target": "Package", + "version": "[3.0.0-rc2.19462.5, )" + } + }, + "imports": [ + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x64": { + "#import": [] + } + } + } +}
\ No newline at end of file diff --git a/tests/src/Common/build_against_pkg_dependencies/obj-linux-x86/build_against_pkg_dependencies.csproj.nuget.cache b/tests/src/Common/build_against_pkg_dependencies/obj-linux-x86/build_against_pkg_dependencies.csproj.nuget.cache new file mode 100644 index 0000000000..1c2d1d11aa --- /dev/null +++ b/tests/src/Common/build_against_pkg_dependencies/obj-linux-x86/build_against_pkg_dependencies.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "ssvojKBzlFfCpBT4q337g32ABI9V2WwCgPOrpGQNgZ5bKx7bOQJ6+2mhApXZaYj8EkJsu2g2Ub82byPa9B1Lrw==", + "success": true +}
\ No newline at end of file diff --git a/tests/src/Common/build_against_pkg_dependencies/obj-linux-x86/build_against_pkg_dependencies.csproj.nuget.dgspec.json b/tests/src/Common/build_against_pkg_dependencies/obj-linux-x86/build_against_pkg_dependencies.csproj.nuget.dgspec.json new file mode 100644 index 0000000000..57bf5a60db --- /dev/null +++ b/tests/src/Common/build_against_pkg_dependencies/obj-linux-x86/build_against_pkg_dependencies.csproj.nuget.dgspec.json @@ -0,0 +1,72 @@ +{ + "format": 1, + "restore": { + "/home/z/Dev/coreclr-sec/tests/src/Common/build_against_pkg_dependencies/build_against_pkg_dependencies.csproj": {} + }, + "projects": { + "/home/z/Dev/coreclr-sec/tests/src/Common/build_against_pkg_dependencies/build_against_pkg_dependencies.csproj": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/Common/build_against_pkg_dependencies/build_against_pkg_dependencies.csproj", + "projectName": "build_against_pkg_dependencies", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/Common/build_against_pkg_dependencies/build_against_pkg_dependencies.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/Common/build_against_pkg_dependencies/obj-linux-x86", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netcoreapp3.1": { + "dependencies": { + "Microsoft.NETCore.ILAsm": { + "target": "Package", + "version": "[3.0.0-rc2.19462.5, )" + }, + "Microsoft.NETCore.ILDAsm": { + "target": "Package", + "version": "[3.0.0-rc2.19462.5, )" + }, + "Microsoft.NETCore.Jit": { + "target": "Package", + "version": "[3.0.0-rc2.19462.5, )" + }, + "Microsoft.NETCore.Runtime.CoreCLR": { + "target": "Package", + "version": "[3.0.0-rc2.19462.5, )" + }, + "Microsoft.NETCore.TestHost": { + "target": "Package", + "version": "[3.0.0-rc2.19462.5, )" + } + }, + "imports": [ + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x86": { + "#import": [] + } + } + } + } +}
\ No newline at end of file diff --git a/tests/src/Common/build_against_pkg_dependencies/obj-linux-x86/build_against_pkg_dependencies.csproj.nuget.g.props b/tests/src/Common/build_against_pkg_dependencies/obj-linux-x86/build_against_pkg_dependencies.csproj.nuget.g.props new file mode 100644 index 0000000000..a9eafdb0ac --- /dev/null +++ b/tests/src/Common/build_against_pkg_dependencies/obj-linux-x86/build_against_pkg_dependencies.csproj.nuget.g.props @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> + <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> + <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> + <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageRoot> + <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageFolders> + <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.4.0</NuGetToolVersion> + </PropertyGroup> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/Common/build_against_pkg_dependencies/obj-linux-x86/build_against_pkg_dependencies.csproj.nuget.g.targets b/tests/src/Common/build_against_pkg_dependencies/obj-linux-x86/build_against_pkg_dependencies.csproj.nuget.g.targets new file mode 100644 index 0000000000..53cfaa19b1 --- /dev/null +++ b/tests/src/Common/build_against_pkg_dependencies/obj-linux-x86/build_against_pkg_dependencies.csproj.nuget.g.targets @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/Common/build_against_pkg_dependencies/obj-linux-x86/project.assets.json b/tests/src/Common/build_against_pkg_dependencies/obj-linux-x86/project.assets.json new file mode 100644 index 0000000000..c97ac01f52 --- /dev/null +++ b/tests/src/Common/build_against_pkg_dependencies/obj-linux-x86/project.assets.json @@ -0,0 +1,212 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v3.1": { + "Microsoft.NETCore.ILAsm/3.0.0-rc2.19462.5": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Runtime.CoreCLR": "3.0.0-rc2.19462.5" + } + }, + "Microsoft.NETCore.ILDAsm/3.0.0-rc2.19462.5": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Runtime.CoreCLR": "3.0.0-rc2.19462.5" + } + }, + "Microsoft.NETCore.Jit/3.0.0-rc2.19462.5": { + "type": "package" + }, + "Microsoft.NETCore.Runtime.CoreCLR/3.0.0-rc2.19462.5": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Jit": "3.0.0-rc2.19462.5" + }, + "compile": { + "ref/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.TestHost/3.0.0-rc2.19462.5": { + "type": "package" + } + }, + ".NETCoreApp,Version=v3.1/linux-x86": { + "Microsoft.NETCore.ILAsm/3.0.0-rc2.19462.5": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Runtime.CoreCLR": "3.0.0-rc2.19462.5" + } + }, + "Microsoft.NETCore.ILDAsm/3.0.0-rc2.19462.5": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Runtime.CoreCLR": "3.0.0-rc2.19462.5" + } + }, + "Microsoft.NETCore.Jit/3.0.0-rc2.19462.5": { + "type": "package" + }, + "Microsoft.NETCore.Runtime.CoreCLR/3.0.0-rc2.19462.5": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Jit": "3.0.0-rc2.19462.5" + }, + "compile": { + "ref/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.TestHost/3.0.0-rc2.19462.5": { + "type": "package" + } + } + }, + "libraries": { + "Microsoft.NETCore.ILAsm/3.0.0-rc2.19462.5": { + "sha512": "WR8r/mVE7e22K0b05vnwxzjWXeNs9rTSj8S8x5L8p7+lj1ksfH3Wv6xK7YLsoidDCSzbpoKPfmxW2k0v+2K1og==", + "type": "package", + "path": "microsoft.netcore.ilasm/3.0.0-rc2.19462.5", + "files": [ + ".nupkg.metadata", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "microsoft.netcore.ilasm.3.0.0-rc2.19462.5.nupkg.sha512", + "microsoft.netcore.ilasm.nuspec", + "runtime.json", + "version.txt" + ] + }, + "Microsoft.NETCore.ILDAsm/3.0.0-rc2.19462.5": { + "sha512": "pufrzH7mWeeBhfjRL6DAM52mL39RuIsBf0NbG+WDyq8F3QGfxlYv8XKmATEtDxGrK/qnk/BgPPhH58/bZ8mang==", + "type": "package", + "path": "microsoft.netcore.ildasm/3.0.0-rc2.19462.5", + "files": [ + ".nupkg.metadata", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "microsoft.netcore.ildasm.3.0.0-rc2.19462.5.nupkg.sha512", + "microsoft.netcore.ildasm.nuspec", + "runtime.json", + "version.txt" + ] + }, + "Microsoft.NETCore.Jit/3.0.0-rc2.19462.5": { + "sha512": "o+MnVf51ymHdPWAVsHJ8VAsO9DRxTNTQRvRsnFLd5dPhYb6tYosuP4++hC9z4x7HRacLwaClZlg5iE6YOiiHFA==", + "type": "package", + "path": "microsoft.netcore.jit/3.0.0-rc2.19462.5", + "files": [ + ".nupkg.metadata", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "microsoft.netcore.jit.3.0.0-rc2.19462.5.nupkg.sha512", + "microsoft.netcore.jit.nuspec", + "runtime.json", + "version.txt" + ] + }, + "Microsoft.NETCore.Runtime.CoreCLR/3.0.0-rc2.19462.5": { + "sha512": "6lB9bdnyNuQXVXfrCpTb5a0m1qf5PgQMB8BrXBuu+ZlD70pH8cPrRiPpVAmpd0D3eYkPUz9XfR6hfhATs6gjTg==", + "type": "package", + "path": "microsoft.netcore.runtime.coreclr/3.0.0-rc2.19462.5", + "files": [ + ".nupkg.metadata", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "microsoft.netcore.runtime.coreclr.3.0.0-rc2.19462.5.nupkg.sha512", + "microsoft.netcore.runtime.coreclr.nuspec", + "ref/netstandard1.0/_._", + "runtime.json", + "version.txt" + ] + }, + "Microsoft.NETCore.TestHost/3.0.0-rc2.19462.5": { + "sha512": "a2J8OzJPMXxw3H1R7R4DG6XNn/vRCqw1HCpOtwUtaQ5lmYy6wQq+d2hrrmhlTr9j8QQec9Mi8E9u+M3L0azHkA==", + "type": "package", + "path": "microsoft.netcore.testhost/3.0.0-rc2.19462.5", + "files": [ + ".nupkg.metadata", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "microsoft.netcore.testhost.3.0.0-rc2.19462.5.nupkg.sha512", + "microsoft.netcore.testhost.nuspec", + "runtime.json", + "version.txt" + ] + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v3.1": [ + "Microsoft.NETCore.ILAsm >= 3.0.0-rc2.19462.5", + "Microsoft.NETCore.ILDAsm >= 3.0.0-rc2.19462.5", + "Microsoft.NETCore.Jit >= 3.0.0-rc2.19462.5", + "Microsoft.NETCore.Runtime.CoreCLR >= 3.0.0-rc2.19462.5", + "Microsoft.NETCore.TestHost >= 3.0.0-rc2.19462.5" + ] + }, + "packageFolders": { + "/home/z/Dev/coreclr-sec/.packages": {} + }, + "project": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/Common/build_against_pkg_dependencies/build_against_pkg_dependencies.csproj", + "projectName": "build_against_pkg_dependencies", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/Common/build_against_pkg_dependencies/build_against_pkg_dependencies.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/Common/build_against_pkg_dependencies/obj-linux-x86", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netcoreapp3.1": { + "dependencies": { + "Microsoft.NETCore.ILAsm": { + "target": "Package", + "version": "[3.0.0-rc2.19462.5, )" + }, + "Microsoft.NETCore.ILDAsm": { + "target": "Package", + "version": "[3.0.0-rc2.19462.5, )" + }, + "Microsoft.NETCore.Jit": { + "target": "Package", + "version": "[3.0.0-rc2.19462.5, )" + }, + "Microsoft.NETCore.Runtime.CoreCLR": { + "target": "Package", + "version": "[3.0.0-rc2.19462.5, )" + }, + "Microsoft.NETCore.TestHost": { + "target": "Package", + "version": "[3.0.0-rc2.19462.5, )" + } + }, + "imports": [ + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x86": { + "#import": [] + } + } + } +}
\ No newline at end of file diff --git a/tests/src/Common/external/obj-linux-x64/external.depproj.nuget.cache b/tests/src/Common/external/obj-linux-x64/external.depproj.nuget.cache new file mode 100644 index 0000000000..0c302520ef --- /dev/null +++ b/tests/src/Common/external/obj-linux-x64/external.depproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "URQ61Y45Fggoh7yKwvMrw5u+w6q02p2QQjdcynhwIWlA7hHPbcKsWXuU9iBTWnrgrUWvAJAlcSz8N3km4x++Yw==", + "success": true +}
\ No newline at end of file diff --git a/tests/src/Common/external/obj-linux-x64/external.depproj.nuget.dgspec.json b/tests/src/Common/external/obj-linux-x64/external.depproj.nuget.dgspec.json new file mode 100644 index 0000000000..ff45e6c083 --- /dev/null +++ b/tests/src/Common/external/obj-linux-x64/external.depproj.nuget.dgspec.json @@ -0,0 +1,100 @@ +{ + "format": 1, + "restore": { + "/home/z/Dev/coreclr-sec/tests/src/Common/external/external.depproj": {} + }, + "projects": { + "/home/z/Dev/coreclr-sec/tests/src/Common/external/external.depproj": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/Common/external/external.depproj", + "projectName": "external", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/Common/external/external.depproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/Common/external/obj-linux-x64", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netcoreapp1.1" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netcoreapp1.1": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netcoreapp1.1": { + "dependencies": { + "CommandLineParser": { + "target": "Package", + "version": "[2.1.1-beta, )" + }, + "Microsoft.CodeAnalysis.Compilers": { + "target": "Package", + "version": "[1.1.1, )" + }, + "Microsoft.Diagnostics.Tracing.TraceEvent": { + "target": "Package", + "version": "[2.0.43, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[12.0.1, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.performance.api": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.core": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.execution": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.metrics": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.runner.console": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.runner.utility": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "win7-x64": { + "#import": [] + }, + "win7-x86": { + "#import": [] + } + } + } + } +}
\ No newline at end of file diff --git a/tests/src/Common/external/obj-linux-x64/external.depproj.nuget.g.props b/tests/src/Common/external/obj-linux-x64/external.depproj.nuget.g.props new file mode 100644 index 0000000000..4e136fd2bc --- /dev/null +++ b/tests/src/Common/external/obj-linux-x64/external.depproj.nuget.g.props @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> + <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> + <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> + <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageRoot> + <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageFolders> + <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.4.0</NuGetToolVersion> + </PropertyGroup> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> + <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)/xunit.runner.console/2.4.1-pre.build.4059/build/xunit.runner.console.props" Condition="Exists('$(NuGetPackageRoot)/xunit.runner.console/2.4.1-pre.build.4059/build/xunit.runner.console.props')" /> + <Import Project="$(NuGetPackageRoot)/microsoft.diagnostics.tracing.traceevent/2.0.43/build/Microsoft.Diagnostics.Tracing.TraceEvent.props" Condition="Exists('$(NuGetPackageRoot)/microsoft.diagnostics.tracing.traceevent/2.0.43/build/Microsoft.Diagnostics.Tracing.TraceEvent.props')" /> + <Import Project="$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.props" Condition="Exists('$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.props')" /> + </ImportGroup> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Pkgxunit_runner_console Condition=" '$(Pkgxunit_runner_console)' == '' ">/home/z/Dev/coreclr-sec/.packages/xunit.runner.console/2.4.1-pre.build.4059</Pkgxunit_runner_console> + <Pkgxunit_analyzers Condition=" '$(Pkgxunit_analyzers)' == '' ">/home/z/Dev/coreclr-sec/.packages/xunit.analyzers/0.10.0</Pkgxunit_analyzers> + <PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">/home/z/Dev/coreclr-sec/.packages/microsoft.codeanalysis.analyzers/1.1.0</PkgMicrosoft_CodeAnalysis_Analyzers> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/Common/external/obj-linux-x64/external.depproj.nuget.g.targets b/tests/src/Common/external/obj-linux-x64/external.depproj.nuget.g.targets new file mode 100644 index 0000000000..96b54d803c --- /dev/null +++ b/tests/src/Common/external/obj-linux-x64/external.depproj.nuget.g.targets @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> + <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.targets" Condition="Exists('$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.targets')" /> + </ImportGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/Common/external/obj-linux-x64/project.assets.json b/tests/src/Common/external/obj-linux-x64/project.assets.json new file mode 100644 index 0000000000..648c3be5cb --- /dev/null +++ b/tests/src/Common/external/obj-linux-x64/project.assets.json @@ -0,0 +1,11311 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v1.1": { + "CommandLineParser/2.1.1-beta": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-24027", + "System.Console": "4.0.0-rc2-24027", + "System.Diagnostics.Debug": "4.0.11-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.IO": "4.1.0-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Linq.Expressions": "4.0.11-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Reflection.Extensions": "4.0.1-rc2-24027", + "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime": "4.1.0-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027" + }, + "compile": { + "lib/netstandard1.5/CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard1.5/CommandLine.dll": {} + } + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "type": "package" + }, + "Microsoft.CodeAnalysis.Common/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "1.1.0", + "System.Collections.Immutable": "1.1.37", + "System.Reflection.Metadata": "1.1.0" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.Compilers/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "[1.1.1]", + "Microsoft.CodeAnalysis.VisualBasic": "[1.1.1]" + } + }, + "Microsoft.CodeAnalysis.CSharp/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.1.1]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CodeAnalysis.VisualBasic/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "1.1.1" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll": {} + } + }, + "Microsoft.CSharp/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "type": "package", + "compile": { + "lib/netstandard1.6/Dia2Lib.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll": {}, + "lib/netstandard1.6/OSExtensions.dll": {}, + "lib/netstandard1.6/TraceReloggerLib.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Dia2Lib.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll": {}, + "lib/netstandard1.6/OSExtensions.dll": {}, + "lib/netstandard1.6/TraceReloggerLib.dll": {} + }, + "build": { + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props": {} + } + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/12.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.3.0", + "NETStandard.Library": "1.6.1", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Runtime.Serialization.Formatters": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Newtonsoft.Json.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Diagnostics.Debug": "4.0.0", + "System.Globalization": "4.0.0", + "System.Linq": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "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.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Console/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Metadata/1.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Collections.Immutable": "1.1.37", + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.InteropServices": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Text.Encoding.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.2/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/dotnet5.2/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp80+wpa81/_._": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Loader/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} + }, + "runtime": { + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.ValueTuple/4.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "[2.4.1-pre.build.4059]", + "xunit.core": "[2.4.1-pre.build.4059]" + } + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + } + }, + "xunit.analyzers/0.10.0": { + "type": "package" + }, + "xunit.assert/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.1/xunit.assert.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.assert.dll": {} + } + }, + "xunit.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.1-pre.build.4059]", + "xunit.extensibility.execution": "[2.4.1-pre.build.4059]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "[2.4.1-pre.build.4059]" + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + } + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "CommandLineParser": "2.1.1-beta", + "Microsoft.3rdpartytools.MarkdownLog": "0.10.0-alpha-experimental", + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.ValueTuple": "4.3.1", + "System.Xml.XmlSerializer": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015", + "xunit.performance.execution": "1.0.0-beta-build0015", + "xunit.performance.metrics": "1.0.0-beta-build0015", + "xunit.runner.utility": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + } + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + } + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit": "2.2.0-beta2-build3300", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + } + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Formatters": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + } + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "type": "package", + "build": { + "build/xunit.runner.console.props": {} + } + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "System.Runtime.Loader": "4.0.0", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll": {} + } + } + }, + ".NETCoreApp,Version=v1.1/win7-x64": { + "CommandLineParser/2.1.1-beta": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-24027", + "System.Console": "4.0.0-rc2-24027", + "System.Diagnostics.Debug": "4.0.11-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.IO": "4.1.0-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Linq.Expressions": "4.0.11-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Reflection.Extensions": "4.0.1-rc2-24027", + "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime": "4.1.0-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027" + }, + "compile": { + "lib/netstandard1.5/CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard1.5/CommandLine.dll": {} + } + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "type": "package" + }, + "Microsoft.CodeAnalysis.Common/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "1.1.0", + "System.Collections.Immutable": "1.1.37", + "System.Reflection.Metadata": "1.1.0" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.Compilers/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "[1.1.1]", + "Microsoft.CodeAnalysis.VisualBasic": "[1.1.1]" + } + }, + "Microsoft.CodeAnalysis.CSharp/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.1.1]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CodeAnalysis.VisualBasic/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "1.1.1" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll": {} + } + }, + "Microsoft.CSharp/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "type": "package", + "compile": { + "lib/netstandard1.6/Dia2Lib.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll": {}, + "lib/netstandard1.6/OSExtensions.dll": {}, + "lib/netstandard1.6/TraceReloggerLib.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Dia2Lib.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll": {}, + "lib/netstandard1.6/OSExtensions.dll": {}, + "lib/netstandard1.6/TraceReloggerLib.dll": {} + }, + "build": { + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props": {} + } + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.win.Microsoft.Win32.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/12.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.3.0", + "NETStandard.Library": "1.6.1", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Runtime.Serialization.Formatters": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Newtonsoft.Json.dll": {} + } + }, + "runtime.any.System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tools/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.Tools.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "runtime.any.System.Globalization/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.dll": {} + } + }, + "runtime.any.System.Globalization.Calendars/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "runtime.any.System.IO/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.IO.dll": {} + } + }, + "runtime.any.System.Reflection/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.dll": {} + } + }, + "runtime.any.System.Reflection.Extensions/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Extensions.dll": {} + } + }, + "runtime.any.System.Reflection.Primitives/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Primitives.dll": {} + } + }, + "runtime.any.System.Resources.ResourceManager/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Resources.ResourceManager.dll": {} + } + }, + "runtime.any.System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.dll": {} + } + }, + "runtime.any.System.Runtime.Handles/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "runtime.any.System.Runtime.InteropServices/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Runtime.InteropServices.dll": {} + } + }, + "runtime.any.System.Text.Encoding/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "runtime.any.System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "runtime.any.System.Threading.Tasks/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "runtime.any.System.Threading.Timer/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Timer.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.win7-x64.runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.win.Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.win.System.Console/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Console.dll": {} + } + }, + "runtime.win.System.Diagnostics.Debug/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.win.System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Overlapped": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "runtime.win.System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "runtime.win.System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Net.NameResolution": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal.Windows": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Overlapped": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "runtime.win.System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "runtime.win7-x64.runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "native": { + "runtimes/win7-x64/native/clrcompression.dll": {} + } + }, + "runtime.win7.System.Private.Uri/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.0/System.Private.Uri.dll": {} + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.1/System.Buffers.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Collections": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Diagnostics.Debug": "4.0.0", + "System.Globalization": "4.0.0", + "System.Linq": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "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.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Console/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.win.System.Console": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.win.System.Diagnostics.Debug": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Diagnostics.Tools": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Diagnostics.Tracing": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization.Calendars": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.any.System.IO": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {} + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.win.System.IO.FileSystem": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {} + } + }, + "System.Net.NameResolution/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal.Windows": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {} + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.win.System.Net.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.win.System.Net.Sockets": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Private.Uri/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.win7.System.Private.Uri": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Metadata/1.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Collections.Immutable": "1.1.37", + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.InteropServices": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Text.Encoding.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.2/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/dotnet5.2/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Resources.ResourceManager": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.any.System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp80+wpa81/_._": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.win.System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.any.System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "System.Runtime.Loader/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} + }, + "runtime": { + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.Claims/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Security.Principal": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Claims": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll": {} + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.any.System.Text.Encoding.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Threading.Timer": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.ValueTuple/4.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "[2.4.1-pre.build.4059]", + "xunit.core": "[2.4.1-pre.build.4059]" + } + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + } + }, + "xunit.analyzers/0.10.0": { + "type": "package" + }, + "xunit.assert/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.1/xunit.assert.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.assert.dll": {} + } + }, + "xunit.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.1-pre.build.4059]", + "xunit.extensibility.execution": "[2.4.1-pre.build.4059]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "[2.4.1-pre.build.4059]" + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + } + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "CommandLineParser": "2.1.1-beta", + "Microsoft.3rdpartytools.MarkdownLog": "0.10.0-alpha-experimental", + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.ValueTuple": "4.3.1", + "System.Xml.XmlSerializer": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015", + "xunit.performance.execution": "1.0.0-beta-build0015", + "xunit.performance.metrics": "1.0.0-beta-build0015", + "xunit.runner.utility": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + } + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + } + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit": "2.2.0-beta2-build3300", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + } + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Formatters": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + } + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "type": "package", + "build": { + "build/xunit.runner.console.props": {} + } + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "System.Runtime.Loader": "4.0.0", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll": {} + } + } + }, + ".NETCoreApp,Version=v1.1/win7-x86": { + "CommandLineParser/2.1.1-beta": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-24027", + "System.Console": "4.0.0-rc2-24027", + "System.Diagnostics.Debug": "4.0.11-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.IO": "4.1.0-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Linq.Expressions": "4.0.11-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Reflection.Extensions": "4.0.1-rc2-24027", + "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime": "4.1.0-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027" + }, + "compile": { + "lib/netstandard1.5/CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard1.5/CommandLine.dll": {} + } + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "type": "package" + }, + "Microsoft.CodeAnalysis.Common/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "1.1.0", + "System.Collections.Immutable": "1.1.37", + "System.Reflection.Metadata": "1.1.0" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.Compilers/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "[1.1.1]", + "Microsoft.CodeAnalysis.VisualBasic": "[1.1.1]" + } + }, + "Microsoft.CodeAnalysis.CSharp/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.1.1]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CodeAnalysis.VisualBasic/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "1.1.1" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll": {} + } + }, + "Microsoft.CSharp/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "type": "package", + "compile": { + "lib/netstandard1.6/Dia2Lib.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll": {}, + "lib/netstandard1.6/OSExtensions.dll": {}, + "lib/netstandard1.6/TraceReloggerLib.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Dia2Lib.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll": {}, + "lib/netstandard1.6/OSExtensions.dll": {}, + "lib/netstandard1.6/TraceReloggerLib.dll": {} + }, + "build": { + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props": {} + } + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.win.Microsoft.Win32.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/12.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.3.0", + "NETStandard.Library": "1.6.1", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Runtime.Serialization.Formatters": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Newtonsoft.Json.dll": {} + } + }, + "runtime.any.System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tools/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.Tools.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "runtime.any.System.Globalization/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.dll": {} + } + }, + "runtime.any.System.Globalization.Calendars/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "runtime.any.System.IO/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.IO.dll": {} + } + }, + "runtime.any.System.Reflection/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.dll": {} + } + }, + "runtime.any.System.Reflection.Extensions/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Extensions.dll": {} + } + }, + "runtime.any.System.Reflection.Primitives/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Primitives.dll": {} + } + }, + "runtime.any.System.Resources.ResourceManager/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Resources.ResourceManager.dll": {} + } + }, + "runtime.any.System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.dll": {} + } + }, + "runtime.any.System.Runtime.Handles/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "runtime.any.System.Runtime.InteropServices/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Runtime.InteropServices.dll": {} + } + }, + "runtime.any.System.Text.Encoding/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "runtime.any.System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "runtime.any.System.Threading.Tasks/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "runtime.any.System.Threading.Timer/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Timer.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.win7-x86.runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.win.Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.win.System.Console/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Console.dll": {} + } + }, + "runtime.win.System.Diagnostics.Debug/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.win.System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Overlapped": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "runtime.win.System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "runtime.win.System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Net.NameResolution": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal.Windows": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Overlapped": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "runtime.win.System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "runtime.win7-x86.runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "native": { + "runtimes/win7-x86/native/clrcompression.dll": {} + } + }, + "runtime.win7.System.Private.Uri/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.0/System.Private.Uri.dll": {} + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.1/System.Buffers.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Collections": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Diagnostics.Debug": "4.0.0", + "System.Globalization": "4.0.0", + "System.Linq": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "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.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Console/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.win.System.Console": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.win.System.Diagnostics.Debug": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Diagnostics.Tools": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Diagnostics.Tracing": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization.Calendars": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.any.System.IO": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {} + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.win.System.IO.FileSystem": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {} + } + }, + "System.Net.NameResolution/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal.Windows": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {} + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.win.System.Net.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.win.System.Net.Sockets": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Private.Uri/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.win7.System.Private.Uri": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Metadata/1.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Collections.Immutable": "1.1.37", + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.InteropServices": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Text.Encoding.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.2/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/dotnet5.2/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Resources.ResourceManager": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.any.System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp80+wpa81/_._": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.win.System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.any.System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "System.Runtime.Loader/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} + }, + "runtime": { + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.Claims/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Security.Principal": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Claims": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll": {} + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.any.System.Text.Encoding.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Threading.Timer": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.ValueTuple/4.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "[2.4.1-pre.build.4059]", + "xunit.core": "[2.4.1-pre.build.4059]" + } + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + } + }, + "xunit.analyzers/0.10.0": { + "type": "package" + }, + "xunit.assert/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.1/xunit.assert.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.assert.dll": {} + } + }, + "xunit.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.1-pre.build.4059]", + "xunit.extensibility.execution": "[2.4.1-pre.build.4059]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "[2.4.1-pre.build.4059]" + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + } + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "CommandLineParser": "2.1.1-beta", + "Microsoft.3rdpartytools.MarkdownLog": "0.10.0-alpha-experimental", + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.ValueTuple": "4.3.1", + "System.Xml.XmlSerializer": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015", + "xunit.performance.execution": "1.0.0-beta-build0015", + "xunit.performance.metrics": "1.0.0-beta-build0015", + "xunit.runner.utility": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + } + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + } + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit": "2.2.0-beta2-build3300", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + } + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Formatters": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + } + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "type": "package", + "build": { + "build/xunit.runner.console.props": {} + } + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "System.Runtime.Loader": "4.0.0", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll": {} + } + } + } + }, + "libraries": { + "CommandLineParser/2.1.1-beta": { + "sha512": "TmWNdtqLmtqLbwr0c9l1nEjjk39GB7wevl+1rxN907kjmdUUu5s470bWJFPEckfjYTnZ216xziW5fMXP35KVXg==", + "type": "package", + "path": "commandlineparser/2.1.1-beta", + "files": [ + ".nupkg.metadata", + "commandlineparser.2.1.1-beta.nupkg.sha512", + "commandlineparser.nuspec", + "lib/net40/CommandLine.XML", + "lib/net40/CommandLine.dll", + "lib/net45/CommandLine.XML", + "lib/net45/CommandLine.dll", + "lib/netstandard1.5/CommandLine.dll", + "lib/netstandard1.5/CommandLine.xml", + "readme.md" + ] + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "sha512": "BlzmPbwd0w2OGgXHFRWYu0tsJj6f6rAglvZ5q5hi71TGl6DDCZjP7WmMvcEFZi5MGGWkZ3VoPXQ4hJMMuGJF6A==", + "type": "package", + "path": "microsoft.3rdpartytools.markdownlog/0.10.0-alpha-experimental", + "files": [ + ".nupkg.metadata", + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll", + "microsoft.3rdpartytools.markdownlog.0.10.0-alpha-experimental.nupkg.sha512", + "microsoft.3rdpartytools.markdownlog.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "sha512": "HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/1.1.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.rtf", + "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", + "microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.1.1": { + "sha512": "r958nYjnl//vgjLljJLu52N2FJKlKYF5pqzyXM/C6K0w8uMcKIkJS4RXygqRBhW7ZjlsJXfiEX/JxLeDxMQUWQ==", + "type": "package", + "path": "microsoft.codeanalysis.common/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "microsoft.codeanalysis.common.1.1.1.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Compilers/1.1.1": { + "sha512": "tqCaCYlRDRra+vI7LRpDhbCdk1grzaNENCij8DOpAnTf8hR3WMcjGGD+PxWNkLFGJcfzNUbIFhb39onmVZI5KQ==", + "type": "package", + "path": "microsoft.codeanalysis.compilers/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "microsoft.codeanalysis.compilers.1.1.1.nupkg.sha512", + "microsoft.codeanalysis.compilers.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.1.1": { + "sha512": "HH8f/KK4fjTWNaKhHPgjF1Hm7lGMEB6A3DK+CUzW9ZbudZTFdNwb3Oa4qDZ25HWF+ifImSdu+1bLgqKCWRbsNQ==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "microsoft.codeanalysis.csharp.1.1.1.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeAnalysis.VisualBasic/1.1.1": { + "sha512": "QFOiWdSHCJwy1usS/7Ka+VAAhtXeEwQCDOd1iKGllGgcJuSiwtLEchxfOkXKsFtNq0P03mVEDRfUxc+6XHR60A==", + "type": "package", + "path": "microsoft.codeanalysis.visualbasic/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "lib/net45/Microsoft.CodeAnalysis.VisualBasic.dll", + "lib/net45/Microsoft.CodeAnalysis.VisualBasic.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.xml", + "microsoft.codeanalysis.visualbasic.1.1.1.nupkg.sha512", + "microsoft.codeanalysis.visualbasic.nuspec" + ] + }, + "Microsoft.CSharp/4.3.0": { + "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", + "type": "package", + "path": "microsoft.csharp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.3.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "sha512": "76ol4cZYvYiaiP5Vbows1ts2WDGpi/x2QxaoAToNCoGD+s2v7znzxPygPprXNYW4HmWgN8z3FsItIZb45X8OgQ==", + "type": "package", + "path": "microsoft.diagnostics.tracing.traceevent/2.0.43", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props", + "lib/native/amd64/KernelTraceControl.dll", + "lib/native/amd64/msdia140.dll", + "lib/native/x86/KernelTraceControl.Win61.dll", + "lib/native/x86/KernelTraceControl.dll", + "lib/native/x86/msdia140.dll", + "lib/net45/Dia2Lib.dll", + "lib/net45/Microsoft.Diagnostics.FastSerialization.dll", + "lib/net45/Microsoft.Diagnostics.FastSerialization.xml", + "lib/net45/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/net45/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/net45/OSExtensions.dll", + "lib/net45/TraceReloggerLib.dll", + "lib/netstandard1.6/Dia2Lib.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.xml", + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/netstandard1.6/OSExtensions.dll", + "lib/netstandard1.6/TraceReloggerLib.dll", + "lib/netstandard2.0/Dia2Lib.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.FastSerialization.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.FastSerialization.xml", + "lib/netstandard2.0/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/netstandard2.0/OSExtensions.dll", + "lib/netstandard2.0/TraceReloggerLib.dll", + "microsoft.diagnostics.tracing.traceevent.2.0.43.nupkg.sha512", + "microsoft.diagnostics.tracing.traceevent.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "type": "package", + "path": "microsoft.netcore.platforms/1.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/12.0.1": { + "sha512": "pBR3wCgYWZGiaZDYP+HHYnalVnPJlpP1q55qvVb+adrDHmFMDc1NAKio61xTwftK3Pw5h7TZJPJEEVMd6ty8rg==", + "type": "package", + "path": "newtonsoft.json/12.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.pdb", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.pdb", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.pdb", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.pdb", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.pdb", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.pdb", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.pdb", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.pdb", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.pdb", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml", + "newtonsoft.json.12.0.1.nupkg.sha512", + "newtonsoft.json.nuspec" + ] + }, + "runtime.any.System.Collections/4.3.0": { + "sha512": "23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==", + "type": "package", + "path": "runtime.any.system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.dll", + "lib/netstandard1.3/System.Collections.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.collections.4.3.0.nupkg.sha512", + "runtime.any.system.collections.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Diagnostics.Tools/4.3.0": { + "sha512": "S/GPBmfPBB48ZghLxdDR7kDAJVAqgAuThyDJho3OLP5OS4tWD2ydyL8LKm8lhiBxce10OKe9X2zZ6DUjAqEbPg==", + "type": "package", + "path": "runtime.any.system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/netstandard1.3/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tools.4.3.0.nupkg.sha512", + "runtime.any.system.diagnostics.tools.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Diagnostics.Tracing/4.3.0": { + "sha512": "1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ==", + "type": "package", + "path": "runtime.any.system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "lib/netstandard1.5/System.Diagnostics.Tracing.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512", + "runtime.any.system.diagnostics.tracing.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Globalization/4.3.0": { + "sha512": "sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==", + "type": "package", + "path": "runtime.any.system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Globalization.dll", + "lib/netstandard1.3/System.Globalization.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.4.3.0.nupkg.sha512", + "runtime.any.system.globalization.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Globalization.Calendars/4.3.0": { + "sha512": "M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w==", + "type": "package", + "path": "runtime.any.system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net/_._", + "lib/netcore50/System.Globalization.Calendars.dll", + "lib/netstandard1.3/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512", + "runtime.any.system.globalization.calendars.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.IO/4.3.0": { + "sha512": "SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==", + "type": "package", + "path": "runtime.any.system.io/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.IO.dll", + "lib/netstandard1.5/System.IO.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.io.4.3.0.nupkg.sha512", + "runtime.any.system.io.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Reflection/4.3.0": { + "sha512": "hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==", + "type": "package", + "path": "runtime.any.system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.dll", + "lib/netstandard1.5/System.Reflection.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.4.3.0.nupkg.sha512", + "runtime.any.system.reflection.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Reflection.Extensions/4.3.0": { + "sha512": "cPhT+Vqu52+cQQrDai/V91gubXUnDKNRvlBnH+hOgtGyHdC17aQIU64EaehwAQymd7kJA5rSrVRNfDYrbhnzyA==", + "type": "package", + "path": "runtime.any.system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/netstandard1.3/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512", + "runtime.any.system.reflection.extensions.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Reflection.Primitives/4.3.0": { + "sha512": "Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==", + "type": "package", + "path": "runtime.any.system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/netstandard1.3/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512", + "runtime.any.system.reflection.primitives.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Resources.ResourceManager/4.3.0": { + "sha512": "Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==", + "type": "package", + "path": "runtime.any.system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/netstandard1.3/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512", + "runtime.any.system.resources.resourcemanager.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Runtime/4.3.0": { + "sha512": "fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==", + "type": "package", + "path": "runtime.any.system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.dll", + "lib/netstandard1.5/System.Runtime.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.4.3.0.nupkg.sha512", + "runtime.any.system.runtime.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Runtime.Handles/4.3.0": { + "sha512": "GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==", + "type": "package", + "path": "runtime.any.system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netstandard1.3/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512", + "runtime.any.system.runtime.handles.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Runtime.InteropServices/4.3.0": { + "sha512": "lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==", + "type": "package", + "path": "runtime.any.system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "lib/netstandard1.5/System.Runtime.InteropServices.dll", + "lib/netstandard1.6/System.Runtime.InteropServices.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512", + "runtime.any.system.runtime.interopservices.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Text.Encoding/4.3.0": { + "sha512": "+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==", + "type": "package", + "path": "runtime.any.system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/netstandard1.3/System.Text.Encoding.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.4.3.0.nupkg.sha512", + "runtime.any.system.text.encoding.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Text.Encoding.Extensions/4.3.0": { + "sha512": "NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg==", + "type": "package", + "path": "runtime.any.system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512", + "runtime.any.system.text.encoding.extensions.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Threading.Tasks/4.3.0": { + "sha512": "OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==", + "type": "package", + "path": "runtime.any.system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/netstandard1.3/System.Threading.Tasks.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512", + "runtime.any.system.threading.tasks.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Threading.Timer/4.3.0": { + "sha512": "w4ehZJ+AwXYmGwYu+rMvym6RvMaRiUEQR1u6dwcyuKHxz8Heu/mO9AG1MquEgTyucnhv3M43X0iKpDOoN17C0w==", + "type": "package", + "path": "runtime.any.system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/netstandard1.3/System.Threading.Timer.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.timer.4.3.0.nupkg.sha512", + "runtime.any.system.threading.timer.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.win.Microsoft.Win32.Primitives/4.3.0": { + "sha512": "NU51SEt/ZaD2MF48sJ17BIqx7rjeNNLXUevfMOjqQIetdndXwYjZfZsT6jD+rSWp/FYxjesdK4xUSl4OTEI0jw==", + "type": "package", + "path": "runtime.win.microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.microsoft.win32.primitives.4.3.0.nupkg.sha512", + "runtime.win.microsoft.win32.primitives.nuspec", + "runtimes/win/lib/net/_._", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll" + ] + }, + "runtime.win.System.Console/4.3.0": { + "sha512": "RRACWygml5dnmfgC1SW6tLGsFgwsUAKFtvhdyHnIEz4EhWyrd7pacDdY95CacQJy7BMXRDRCejC9aCRC0Y1sQA==", + "type": "package", + "path": "runtime.win.system.console/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.system.console.4.3.0.nupkg.sha512", + "runtime.win.system.console.nuspec", + "runtimes/win/lib/net/_._", + "runtimes/win/lib/netcore50/System.Console.dll", + "runtimes/win/lib/netstandard1.3/System.Console.dll" + ] + }, + "runtime.win.System.Diagnostics.Debug/4.3.0": { + "sha512": "hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g==", + "type": "package", + "path": "runtime.win.system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.system.diagnostics.debug.4.3.0.nupkg.sha512", + "runtime.win.system.diagnostics.debug.nuspec", + "runtimes/aot/lib/netcore50/System.Diagnostics.Debug.dll", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netcore50/System.Diagnostics.Debug.dll", + "runtimes/win/lib/netstandard1.3/System.Diagnostics.Debug.dll", + "runtimes/win/lib/win8/_._", + "runtimes/win/lib/wp80/_._", + "runtimes/win/lib/wpa81/_._" + ] + }, + "runtime.win.System.IO.FileSystem/4.3.0": { + "sha512": "Z37zcSCpXuGCYtFbqYO0TwOVXxS2d+BXgSoDFZmRg8BC4Cuy54edjyIvhhcfCrDQA9nl+EPFTgHN54dRAK7mNA==", + "type": "package", + "path": "runtime.win.system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.system.io.filesystem.4.3.0.nupkg.sha512", + "runtime.win.system.io.filesystem.nuspec", + "runtimes/win/lib/net/_._", + "runtimes/win/lib/netcore50/System.IO.FileSystem.dll", + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.dll", + "runtimes/win/lib/win8/_._", + "runtimes/win/lib/wp8/_._", + "runtimes/win/lib/wpa81/_._" + ] + }, + "runtime.win.System.Net.Primitives/4.3.0": { + "sha512": "lkXXykakvXUU+Zq2j0pC6EO20lEhijjqMc01XXpp1CJN+DeCwl3nsj4t5Xbpz3kA7yQyTqw6d9SyIzsyLsV3zA==", + "type": "package", + "path": "runtime.win.system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.system.net.primitives.4.3.0.nupkg.sha512", + "runtime.win.system.net.primitives.nuspec", + "runtimes/win/lib/net/_._", + "runtimes/win/lib/netcore50/System.Net.Primitives.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Primitives.dll" + ] + }, + "runtime.win.System.Net.Sockets/4.3.0": { + "sha512": "FK/2gX6MmuLIKNCGsV59Fe4IYrLrI5n9pQ1jh477wiivEM/NCXDT2dRetH5FSfY0bQ+VgTLcS3zcmjQ8my3nxQ==", + "type": "package", + "path": "runtime.win.system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.system.net.sockets.4.3.0.nupkg.sha512", + "runtime.win.system.net.sockets.nuspec", + "runtimes/win/lib/net/_._", + "runtimes/win/lib/netcore50/System.Net.Sockets.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Sockets.dll" + ] + }, + "runtime.win.System.Runtime.Extensions/4.3.0": { + "sha512": "RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==", + "type": "package", + "path": "runtime.win.system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512", + "runtime.win.system.runtime.extensions.nuspec", + "runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll", + "runtimes/win/lib/net/_._", + "runtimes/win/lib/netcore50/System.Runtime.Extensions.dll", + "runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll" + ] + }, + "runtime.win7-x64.runtime.native.System.IO.Compression/4.3.0": { + "sha512": "UamDlgSO/nIzc96M+g3wbvAGbAuXjvRYR5Ttm/FVJgt2iva8ouOqSJ0j6eGI7pZDLvD/ZISl9XRZOajE/Xvizg==", + "type": "package", + "path": "runtime.win7-x64.runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win7-x64.runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.win7-x64.runtime.native.system.io.compression.nuspec", + "runtimes/win7-x64/native/clrcompression.dll" + ] + }, + "runtime.win7-x86.runtime.native.System.IO.Compression/4.3.0": { + "sha512": "99pM1ZhX7dPNnr/dOxuAxnVl/2XNWRh1WAUfesV3ZKwbR6mnEzpfbz2GX69zrpGvKbEytsjMKCD+auvvH6f7kA==", + "type": "package", + "path": "runtime.win7-x86.runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win7-x86.runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.win7-x86.runtime.native.system.io.compression.nuspec", + "runtimes/win7-x86/native/clrcompression.dll" + ] + }, + "runtime.win7.System.Private.Uri/4.3.0": { + "sha512": "Q+IBgaPYicSQs2tBlmXqbS25c/JLIthWrgrpMwxKSOobW/OqIMVFruUGfuaz4QABVzV8iKdCAbN7APY7Tclbnw==", + "type": "package", + "path": "runtime.win7.system.private.uri/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win7.system.private.uri.4.3.0.nupkg.sha512", + "runtime.win7.system.private.uri.nuspec", + "runtimes/aot/lib/netcore50/System.Private.Uri.dll", + "runtimes/win/lib/netcore50/System.Private.Uri.dll", + "runtimes/win/lib/netstandard1.0/System.Private.Uri.dll" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.3.0": { + "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "type": "package", + "path": "system.buffers/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/.xml", + "lib/netstandard1.1/System.Buffers.dll", + "system.buffers.4.3.0.nupkg.sha512", + "system.buffers.nuspec" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.3.0": { + "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "type": "package", + "path": "system.collections.concurrent/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.3.0.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37": { + "sha512": "fTpqwZYBzoklTT+XjTRK8KxvmrGkYHzBiylCcKyQcxiOM8k+QvhNBxRvFHDWzy4OEP5f8/9n+xQ9mEgEXY+muA==", + "type": "package", + "path": "system.collections.immutable/1.1.37", + "files": [ + ".nupkg.metadata", + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.1.1.37.nupkg.sha512", + "system.collections.immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.3.0": { + "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "type": "package", + "path": "system.collections.nongeneric/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.3.0.nupkg.sha512", + "system.collections.nongeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.3.0": { + "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "type": "package", + "path": "system.collections.specialized/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.Specialized.dll", + "lib/netstandard1.3/System.Collections.Specialized.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.xml", + "ref/netstandard1.3/de/System.Collections.Specialized.xml", + "ref/netstandard1.3/es/System.Collections.Specialized.xml", + "ref/netstandard1.3/fr/System.Collections.Specialized.xml", + "ref/netstandard1.3/it/System.Collections.Specialized.xml", + "ref/netstandard1.3/ja/System.Collections.Specialized.xml", + "ref/netstandard1.3/ko/System.Collections.Specialized.xml", + "ref/netstandard1.3/ru/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.specialized.4.3.0.nupkg.sha512", + "system.collections.specialized.nuspec" + ] + }, + "System.ComponentModel/4.3.0": { + "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "type": "package", + "path": "system.componentmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.4.3.0.nupkg.sha512", + "system.componentmodel.nuspec" + ] + }, + "System.ComponentModel.Primitives/4.3.0": { + "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "type": "package", + "path": "system.componentmodel.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.Primitives.dll", + "lib/netstandard1.0/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.primitives.4.3.0.nupkg.sha512", + "system.componentmodel.primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "type": "package", + "path": "system.componentmodel.typeconverter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/net462/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/net462/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "system.componentmodel.typeconverter.nuspec" + ] + }, + "System.Console/4.3.0": { + "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "type": "package", + "path": "system.console/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.3.0.nupkg.sha512", + "system.console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.3.0": { + "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "type": "package", + "path": "system.dynamic.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.3.0.nupkg.sha512", + "system.dynamic.runtime.nuspec" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.3.0": { + "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "type": "package", + "path": "system.linq.expressions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.3.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.NameResolution/4.3.0": { + "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==", + "type": "package", + "path": "system.net.nameresolution/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.NameResolution.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.xml", + "ref/netstandard1.3/de/System.Net.NameResolution.xml", + "ref/netstandard1.3/es/System.Net.NameResolution.xml", + "ref/netstandard1.3/fr/System.Net.NameResolution.xml", + "ref/netstandard1.3/it/System.Net.NameResolution.xml", + "ref/netstandard1.3/ja/System.Net.NameResolution.xml", + "ref/netstandard1.3/ko/System.Net.NameResolution.xml", + "ref/netstandard1.3/ru/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", + "runtimes/win/lib/net46/System.Net.NameResolution.dll", + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll", + "system.net.nameresolution.4.3.0.nupkg.sha512", + "system.net.nameresolution.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.ObjectModel/4.3.0": { + "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "type": "package", + "path": "system.objectmodel/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Private.Uri/4.3.0": { + "sha512": "I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==", + "type": "package", + "path": "system.private.uri/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "system.private.uri.4.3.0.nupkg.sha512", + "system.private.uri.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.1.0": { + "sha512": "RLIE4sSt2zngMLuqM6YmxBH99mTumtT4DNZE4+msfEaInUP5iCLQT+BHPl+2cjSAP1pdALyAjLB8RtCB+WGGWQ==", + "type": "package", + "path": "system.reflection.metadata/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/dotnet5.2/System.Reflection.Metadata.dll", + "lib/dotnet5.2/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.1.1.0.nupkg.sha512", + "system.reflection.metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0": { + "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==", + "type": "package", + "path": "system.runtime.loader/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net462/_._", + "lib/netstandard1.5/System.Runtime.Loader.dll", + "ref/netstandard1.5/System.Runtime.Loader.dll", + "ref/netstandard1.5/System.Runtime.Loader.xml", + "ref/netstandard1.5/de/System.Runtime.Loader.xml", + "ref/netstandard1.5/es/System.Runtime.Loader.xml", + "ref/netstandard1.5/fr/System.Runtime.Loader.xml", + "ref/netstandard1.5/it/System.Runtime.Loader.xml", + "ref/netstandard1.5/ja/System.Runtime.Loader.xml", + "ref/netstandard1.5/ko/System.Runtime.Loader.xml", + "ref/netstandard1.5/ru/System.Runtime.Loader.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml", + "system.runtime.loader.4.0.0.nupkg.sha512", + "system.runtime.loader.nuspec" + ] + }, + "System.Runtime.Numerics/4.3.0": { + "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==", + "type": "package", + "path": "system.runtime.serialization.formatters/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Runtime.Serialization.Formatters.dll", + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Runtime.Serialization.Formatters.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.serialization.formatters.4.3.0.nupkg.sha512", + "system.runtime.serialization.formatters.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Primitives.dll", + "lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "system.runtime.serialization.primitives.4.3.0.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec" + ] + }, + "System.Security.Claims/4.3.0": { + "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==", + "type": "package", + "path": "system.security.claims/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/netstandard1.3/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.xml", + "ref/netstandard1.3/de/System.Security.Claims.xml", + "ref/netstandard1.3/es/System.Security.Claims.xml", + "ref/netstandard1.3/fr/System.Security.Claims.xml", + "ref/netstandard1.3/it/System.Security.Claims.xml", + "ref/netstandard1.3/ja/System.Security.Claims.xml", + "ref/netstandard1.3/ko/System.Security.Claims.xml", + "ref/netstandard1.3/ru/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hans/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hant/System.Security.Claims.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.claims.4.3.0.nupkg.sha512", + "system.security.claims.nuspec" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.3.0": { + "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "type": "package", + "path": "system.security.cryptography.cng/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net463/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net463/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "system.security.cryptography.cng.4.3.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Principal/4.3.0": { + "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==", + "type": "package", + "path": "system.security.principal/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/netstandard1.0/System.Security.Principal.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/netcore50/de/System.Security.Principal.xml", + "ref/netcore50/es/System.Security.Principal.xml", + "ref/netcore50/fr/System.Security.Principal.xml", + "ref/netcore50/it/System.Security.Principal.xml", + "ref/netcore50/ja/System.Security.Principal.xml", + "ref/netcore50/ko/System.Security.Principal.xml", + "ref/netcore50/ru/System.Security.Principal.xml", + "ref/netcore50/zh-hans/System.Security.Principal.xml", + "ref/netcore50/zh-hant/System.Security.Principal.xml", + "ref/netstandard1.0/System.Security.Principal.dll", + "ref/netstandard1.0/System.Security.Principal.xml", + "ref/netstandard1.0/de/System.Security.Principal.xml", + "ref/netstandard1.0/es/System.Security.Principal.xml", + "ref/netstandard1.0/fr/System.Security.Principal.xml", + "ref/netstandard1.0/it/System.Security.Principal.xml", + "ref/netstandard1.0/ja/System.Security.Principal.xml", + "ref/netstandard1.0/ko/System.Security.Principal.xml", + "ref/netstandard1.0/ru/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hans/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hant/System.Security.Principal.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.principal.4.3.0.nupkg.sha512", + "system.security.principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.3.0": { + "sha512": "HVL1rvqYtnRCxFsYag/2le/ZfKLK4yMw79+s6FmKXbSCNN0JeAhrYxnRAHFoWRa0dEojsDcbBSpH3l22QxAVyw==", + "type": "package", + "path": "system.security.principal.windows/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "system.security.principal.windows.4.3.0.nupkg.sha512", + "system.security.principal.windows.nuspec" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.3.0": { + "sha512": "m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==", + "type": "package", + "path": "system.threading.overlapped/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "ref/netstandard1.3/System.Threading.Overlapped.dll", + "ref/netstandard1.3/System.Threading.Overlapped.xml", + "ref/netstandard1.3/de/System.Threading.Overlapped.xml", + "ref/netstandard1.3/es/System.Threading.Overlapped.xml", + "ref/netstandard1.3/fr/System.Threading.Overlapped.xml", + "ref/netstandard1.3/it/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ja/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ko/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ru/System.Threading.Overlapped.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml", + "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll", + "runtimes/win/lib/net46/System.Threading.Overlapped.dll", + "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll", + "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll", + "system.threading.overlapped.4.3.0.nupkg.sha512", + "system.threading.overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", + "type": "package", + "path": "system.threading.tasks.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "system.threading.tasks.extensions.4.3.0.nupkg.sha512", + "system.threading.tasks.extensions.nuspec" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.ValueTuple/4.3.1": { + "sha512": "xzDmg26Wb2x2rFDjwziaMYQJqxhrK+b4OUC008o7CnZhUMb2p5XfwgOgAQ/WlKhqxMUSDWRUm5/lNTKdh27pJA==", + "type": "package", + "path": "system.valuetuple/4.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netstandard1.0/.xml", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/.xml", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.3.1.nupkg.sha512", + "system.valuetuple.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.3.0": { + "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "type": "package", + "path": "system.xml.xmldocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.3.0.nupkg.sha512", + "system.xml.xmldocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.3.0": { + "sha512": "MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==", + "type": "package", + "path": "system.xml.xmlserializer/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "lib/netstandard1.3/System.Xml.XmlSerializer.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XmlSerializer.dll", + "ref/netcore50/System.Xml.XmlSerializer.xml", + "ref/netcore50/de/System.Xml.XmlSerializer.xml", + "ref/netcore50/es/System.Xml.XmlSerializer.xml", + "ref/netcore50/fr/System.Xml.XmlSerializer.xml", + "ref/netcore50/it/System.Xml.XmlSerializer.xml", + "ref/netcore50/ja/System.Xml.XmlSerializer.xml", + "ref/netcore50/ko/System.Xml.XmlSerializer.xml", + "ref/netcore50/ru/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/System.Xml.XmlSerializer.dll", + "ref/netstandard1.0/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/de/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/es/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/it/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/System.Xml.XmlSerializer.dll", + "ref/netstandard1.3/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/de/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/es/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/it/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "system.xml.xmlserializer.4.3.0.nupkg.sha512", + "system.xml.xmlserializer.nuspec" + ] + }, + "xunit/2.4.1-pre.build.4059": { + "sha512": "Kt50VVI9yqbPLPICi1J2Sl2zoidhyMqbT+ywCSINDDXCJhVOXVBoE/1geWui5Sppx8Cv5U0DmYCLxveaOB0mLw==", + "type": "package", + "path": "xunit/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "xunit.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.nuspec" + ] + }, + "xunit.abstractions/2.0.3": { + "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", + "type": "package", + "path": "xunit.abstractions/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/netstandard1.0/xunit.abstractions.dll", + "lib/netstandard1.0/xunit.abstractions.xml", + "lib/netstandard2.0/xunit.abstractions.dll", + "lib/netstandard2.0/xunit.abstractions.xml", + "xunit.abstractions.2.0.3.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.analyzers/0.10.0": { + "sha512": "4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg==", + "type": "package", + "path": "xunit.analyzers/0.10.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/xunit.analyzers.dll", + "tools/install.ps1", + "tools/uninstall.ps1", + "xunit.analyzers.0.10.0.nupkg.sha512", + "xunit.analyzers.nuspec" + ] + }, + "xunit.assert/2.4.1-pre.build.4059": { + "sha512": "PrfmhpgBTilGWP4DC6Q2FV17TEfTpnCARMjYNMQvUF1IFV5DhXNU5ChC0JeL17ctp89krn4Pld4/Wiuq4ILMxw==", + "type": "package", + "path": "xunit.assert/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.1/xunit.assert.dll", + "lib/netstandard1.1/xunit.assert.xml", + "lib/netstandard2.0/xunit.assert.dll", + "lib/netstandard2.0/xunit.assert.xml", + "xunit.assert.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.core/2.4.1-pre.build.4059": { + "sha512": "nQh89ZP+wmC79euBg5p/6Jr8rugPTQo/GAx9Wry2Pgu9q4ltDv9XeQTqsQE/trvqOjyrTRtCOQT1P+vcufj0Kg==", + "type": "package", + "path": "xunit.core/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/xunit.core.props", + "build/xunit.core.targets", + "buildMultiTargeting/xunit.core.props", + "buildMultiTargeting/xunit.core.targets", + "xunit.core.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.core.nuspec" + ] + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "sha512": "MpnCaHPR67FdYgdkbzuSIxtYdGJaY6WwjotyvifGKcy94M3Rm2eCQqKQsFSN1TbcRhHRCweOo24+E+wnGxjuTw==", + "type": "package", + "path": "xunit.extensibility.core/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/xunit.core.dll", + "lib/net452/xunit.core.dll.tdnet", + "lib/net452/xunit.core.xml", + "lib/net452/xunit.runner.tdnet.dll", + "lib/net452/xunit.runner.utility.net452.dll", + "lib/netstandard1.1/xunit.core.dll", + "lib/netstandard1.1/xunit.core.xml", + "lib/netstandard2.0/xunit.core.dll", + "lib/netstandard2.0/xunit.core.xml", + "xunit.extensibility.core.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "sha512": "sLmjOlIAAs4omfY/019PQMXWkxpxd/CfVnTEMBBEN89fU/bPfeoNRBjnqJ54tHpK2xDCPUye19PNSFH4aW6B8Q==", + "type": "package", + "path": "xunit.extensibility.execution/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/xunit.execution.desktop.dll", + "lib/net452/xunit.execution.desktop.xml", + "lib/netstandard1.1/xunit.execution.dotnet.dll", + "lib/netstandard1.1/xunit.execution.dotnet.xml", + "lib/netstandard2.0/xunit.execution.dotnet.dll", + "lib/netstandard2.0/xunit.execution.dotnet.xml", + "xunit.extensibility.execution.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "sha512": "FBASqurcvUoVQ52vY2LH4XUf1/Hkz9wmcuBj5IqIhEpgK+YjhWePepguSlpSre44hhhWNe5WO3XIrZ6pGTbyng==", + "type": "package", + "path": "xunit.performance.api/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.api.dll", + "lib/net461/xunit.performance.api.xml", + "lib/netstandard1.5/xunit.performance.api.dll", + "lib/netstandard1.5/xunit.performance.api.xml", + "xunit.performance.api.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.api.nuspec" + ] + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "sha512": "1CEv1zleRb8D0mDckZjpR8VPaP+2YSeMUAnnb/a3aL0DrG9IEeTN2Uu+30IaX/OHG7iuqLX9zWja+sey76Us0w==", + "type": "package", + "path": "xunit.performance.core/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/netstandard1.3/xunit.performance.core.dll", + "lib/netstandard1.3/xunit.performance.core.xml", + "xunit.performance.core.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.core.nuspec" + ] + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "sha512": "hfNLz/+fA1CqHPQWexPoQBDMs1y1x8gdy1WgQH1nUG5Jf1KVviUddy3+MCTEbuELyqrcLpkR/p57WLUAYKwhCw==", + "type": "package", + "path": "xunit.performance.execution/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.execution.dll", + "lib/net461/xunit.performance.execution.xml", + "lib/netstandard1.5/xunit.performance.execution.dll", + "lib/netstandard1.5/xunit.performance.execution.xml", + "xunit.performance.execution.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.execution.nuspec" + ] + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "sha512": "VWtijjK9HfQvx2nmQ15hEAtBdHEmWSVk0Gc60+yEF+xMq/wZmD0jSvCykW5Jz0ponX88Z6RU39ZjRDq+vLnCgg==", + "type": "package", + "path": "xunit.performance.metrics/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.metrics.dll", + "lib/net461/xunit.performance.metrics.xml", + "lib/netstandard1.5/xunit.performance.metrics.dll", + "lib/netstandard1.5/xunit.performance.metrics.xml", + "xunit.performance.metrics.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.metrics.nuspec" + ] + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "sha512": "oWTxKNZbtkn8HBHi59zxTRP4y80SlaOqFOu+ausTLOyOPr7/aZ39U6L9F8mh69890NRbW2Qcd/UdP3YvPsseHw==", + "type": "package", + "path": "xunit.runner.console/2.4.1-pre.build.4059", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/xunit.runner.console.props", + "tools/net452/xunit.abstractions.dll", + "tools/net452/xunit.console.exe", + "tools/net452/xunit.console.exe.config", + "tools/net452/xunit.console.x86.exe", + "tools/net452/xunit.console.x86.exe.config", + "tools/net452/xunit.runner.reporters.net452.dll", + "tools/net452/xunit.runner.utility.net452.dll", + "tools/net46/xunit.abstractions.dll", + "tools/net46/xunit.console.exe", + "tools/net46/xunit.console.exe.config", + "tools/net46/xunit.console.x86.exe", + "tools/net46/xunit.console.x86.exe.config", + "tools/net46/xunit.runner.reporters.net452.dll", + "tools/net46/xunit.runner.utility.net452.dll", + "tools/net461/xunit.abstractions.dll", + "tools/net461/xunit.console.exe", + "tools/net461/xunit.console.exe.config", + "tools/net461/xunit.console.x86.exe", + "tools/net461/xunit.console.x86.exe.config", + "tools/net461/xunit.runner.reporters.net452.dll", + "tools/net461/xunit.runner.utility.net452.dll", + "tools/net462/xunit.abstractions.dll", + "tools/net462/xunit.console.exe", + "tools/net462/xunit.console.exe.config", + "tools/net462/xunit.console.x86.exe", + "tools/net462/xunit.console.x86.exe.config", + "tools/net462/xunit.runner.reporters.net452.dll", + "tools/net462/xunit.runner.utility.net452.dll", + "tools/net47/xunit.abstractions.dll", + "tools/net47/xunit.console.exe", + "tools/net47/xunit.console.exe.config", + "tools/net47/xunit.console.x86.exe", + "tools/net47/xunit.console.x86.exe.config", + "tools/net47/xunit.runner.reporters.net452.dll", + "tools/net47/xunit.runner.utility.net452.dll", + "tools/net471/xunit.abstractions.dll", + "tools/net471/xunit.console.exe", + "tools/net471/xunit.console.exe.config", + "tools/net471/xunit.console.x86.exe", + "tools/net471/xunit.console.x86.exe.config", + "tools/net471/xunit.runner.reporters.net452.dll", + "tools/net471/xunit.runner.utility.net452.dll", + "tools/net472/xunit.abstractions.dll", + "tools/net472/xunit.console.exe", + "tools/net472/xunit.console.exe.config", + "tools/net472/xunit.console.x86.exe", + "tools/net472/xunit.console.x86.exe.config", + "tools/net472/xunit.runner.reporters.net452.dll", + "tools/net472/xunit.runner.utility.net452.dll", + "tools/netcoreapp1.0/xunit.abstractions.dll", + "tools/netcoreapp1.0/xunit.console.deps.json", + "tools/netcoreapp1.0/xunit.console.dll", + "tools/netcoreapp1.0/xunit.console.dll.config", + "tools/netcoreapp1.0/xunit.console.runtimeconfig.json", + "tools/netcoreapp1.0/xunit.runner.reporters.netcoreapp10.dll", + "tools/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll", + "tools/netcoreapp1.0/xunit.runner.utility.netcoreapp10.xml", + "tools/netcoreapp2.0/xunit.abstractions.dll", + "tools/netcoreapp2.0/xunit.console.deps.json", + "tools/netcoreapp2.0/xunit.console.dll", + "tools/netcoreapp2.0/xunit.console.dll.config", + "tools/netcoreapp2.0/xunit.console.runtimeconfig.json", + "tools/netcoreapp2.0/xunit.runner.reporters.netcoreapp10.dll", + "tools/netcoreapp2.0/xunit.runner.utility.netcoreapp10.dll", + "tools/netcoreapp2.0/xunit.runner.utility.netcoreapp10.xml", + "xunit.runner.console.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.runner.console.nuspec" + ] + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "sha512": "YyTcFxooSkYo9gr8HgLhHZ7T5PHjnCLC9dGXgbLwMCNZeqO+DzY8nWehE++FasEwMAlUv87MLhLEVXoVvMQtKQ==", + "type": "package", + "path": "xunit.runner.utility/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/xunit.runner.utility.net35.dll", + "lib/net35/xunit.runner.utility.net35.xml", + "lib/net452/xunit.runner.utility.net452.dll", + "lib/net452/xunit.runner.utility.net452.xml", + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll", + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.xml", + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll", + "lib/netstandard1.1/xunit.runner.utility.netstandard11.xml", + "lib/netstandard1.5/xunit.runner.utility.netstandard15.dll", + "lib/netstandard1.5/xunit.runner.utility.netstandard15.xml", + "lib/netstandard2.0/xunit.runner.utility.netstandard20.dll", + "lib/netstandard2.0/xunit.runner.utility.netstandard20.xml", + "lib/uap10.0/xunit.runner.utility.uwp10.dll", + "lib/uap10.0/xunit.runner.utility.uwp10.pri", + "lib/uap10.0/xunit.runner.utility.uwp10.xml", + "xunit.runner.utility.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v1.1": [ + "CommandLineParser >= 2.1.1-beta", + "Microsoft.CodeAnalysis.Compilers >= 1.1.1", + "Microsoft.Diagnostics.Tracing.TraceEvent >= 2.0.43", + "Newtonsoft.Json >= 12.0.1", + "xunit >= 2.4.1-pre.build.4059", + "xunit.performance.api >= 1.0.0-beta-build0015", + "xunit.performance.core >= 1.0.0-beta-build0015", + "xunit.performance.execution >= 1.0.0-beta-build0015", + "xunit.performance.metrics >= 1.0.0-beta-build0015", + "xunit.runner.console >= 2.4.1-pre.build.4059", + "xunit.runner.utility >= 2.4.1-pre.build.4059" + ] + }, + "packageFolders": { + "/home/z/Dev/coreclr-sec/.packages": {} + }, + "project": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/Common/external/external.depproj", + "projectName": "external", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/Common/external/external.depproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/Common/external/obj-linux-x64", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netcoreapp1.1" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netcoreapp1.1": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netcoreapp1.1": { + "dependencies": { + "CommandLineParser": { + "target": "Package", + "version": "[2.1.1-beta, )" + }, + "Microsoft.CodeAnalysis.Compilers": { + "target": "Package", + "version": "[1.1.1, )" + }, + "Microsoft.Diagnostics.Tracing.TraceEvent": { + "target": "Package", + "version": "[2.0.43, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[12.0.1, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.performance.api": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.core": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.execution": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.metrics": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.runner.console": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.runner.utility": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "win7-x64": { + "#import": [] + }, + "win7-x86": { + "#import": [] + } + } + } +}
\ No newline at end of file diff --git a/tests/src/Common/external/obj-linux-x86/external.depproj.nuget.cache b/tests/src/Common/external/obj-linux-x86/external.depproj.nuget.cache new file mode 100644 index 0000000000..a256cd9265 --- /dev/null +++ b/tests/src/Common/external/obj-linux-x86/external.depproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "57s8O7aBoAl8EShHH+iXxlu29+1ltSFpBcpm+y9Xrhy21Vz3t7iDF2WpTPkwhiQqhij3iiDEWKPqqVlrbrK1KA==", + "success": true +}
\ No newline at end of file diff --git a/tests/src/Common/external/obj-linux-x86/external.depproj.nuget.dgspec.json b/tests/src/Common/external/obj-linux-x86/external.depproj.nuget.dgspec.json new file mode 100644 index 0000000000..4c56123389 --- /dev/null +++ b/tests/src/Common/external/obj-linux-x86/external.depproj.nuget.dgspec.json @@ -0,0 +1,100 @@ +{ + "format": 1, + "restore": { + "/home/z/Dev/coreclr-sec/tests/src/Common/external/external.depproj": {} + }, + "projects": { + "/home/z/Dev/coreclr-sec/tests/src/Common/external/external.depproj": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/Common/external/external.depproj", + "projectName": "external", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/Common/external/external.depproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/Common/external/obj-linux-x86", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netcoreapp1.1" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netcoreapp1.1": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netcoreapp1.1": { + "dependencies": { + "CommandLineParser": { + "target": "Package", + "version": "[2.1.1-beta, )" + }, + "Microsoft.CodeAnalysis.Compilers": { + "target": "Package", + "version": "[1.1.1, )" + }, + "Microsoft.Diagnostics.Tracing.TraceEvent": { + "target": "Package", + "version": "[2.0.43, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[12.0.1, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.performance.api": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.core": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.execution": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.metrics": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.runner.console": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.runner.utility": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "win7-x64": { + "#import": [] + }, + "win7-x86": { + "#import": [] + } + } + } + } +}
\ No newline at end of file diff --git a/tests/src/Common/external/obj-linux-x86/external.depproj.nuget.g.props b/tests/src/Common/external/obj-linux-x86/external.depproj.nuget.g.props new file mode 100644 index 0000000000..4e136fd2bc --- /dev/null +++ b/tests/src/Common/external/obj-linux-x86/external.depproj.nuget.g.props @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> + <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> + <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> + <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageRoot> + <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageFolders> + <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.4.0</NuGetToolVersion> + </PropertyGroup> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> + <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)/xunit.runner.console/2.4.1-pre.build.4059/build/xunit.runner.console.props" Condition="Exists('$(NuGetPackageRoot)/xunit.runner.console/2.4.1-pre.build.4059/build/xunit.runner.console.props')" /> + <Import Project="$(NuGetPackageRoot)/microsoft.diagnostics.tracing.traceevent/2.0.43/build/Microsoft.Diagnostics.Tracing.TraceEvent.props" Condition="Exists('$(NuGetPackageRoot)/microsoft.diagnostics.tracing.traceevent/2.0.43/build/Microsoft.Diagnostics.Tracing.TraceEvent.props')" /> + <Import Project="$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.props" Condition="Exists('$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.props')" /> + </ImportGroup> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Pkgxunit_runner_console Condition=" '$(Pkgxunit_runner_console)' == '' ">/home/z/Dev/coreclr-sec/.packages/xunit.runner.console/2.4.1-pre.build.4059</Pkgxunit_runner_console> + <Pkgxunit_analyzers Condition=" '$(Pkgxunit_analyzers)' == '' ">/home/z/Dev/coreclr-sec/.packages/xunit.analyzers/0.10.0</Pkgxunit_analyzers> + <PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">/home/z/Dev/coreclr-sec/.packages/microsoft.codeanalysis.analyzers/1.1.0</PkgMicrosoft_CodeAnalysis_Analyzers> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/Common/external/obj-linux-x86/external.depproj.nuget.g.targets b/tests/src/Common/external/obj-linux-x86/external.depproj.nuget.g.targets new file mode 100644 index 0000000000..96b54d803c --- /dev/null +++ b/tests/src/Common/external/obj-linux-x86/external.depproj.nuget.g.targets @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> + <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.targets" Condition="Exists('$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.targets')" /> + </ImportGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/Common/external/obj-linux-x86/project.assets.json b/tests/src/Common/external/obj-linux-x86/project.assets.json new file mode 100644 index 0000000000..83bdc0dd9a --- /dev/null +++ b/tests/src/Common/external/obj-linux-x86/project.assets.json @@ -0,0 +1,11311 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v1.1": { + "CommandLineParser/2.1.1-beta": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-24027", + "System.Console": "4.0.0-rc2-24027", + "System.Diagnostics.Debug": "4.0.11-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.IO": "4.1.0-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Linq.Expressions": "4.0.11-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Reflection.Extensions": "4.0.1-rc2-24027", + "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime": "4.1.0-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027" + }, + "compile": { + "lib/netstandard1.5/CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard1.5/CommandLine.dll": {} + } + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "type": "package" + }, + "Microsoft.CodeAnalysis.Common/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "1.1.0", + "System.Collections.Immutable": "1.1.37", + "System.Reflection.Metadata": "1.1.0" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.Compilers/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "[1.1.1]", + "Microsoft.CodeAnalysis.VisualBasic": "[1.1.1]" + } + }, + "Microsoft.CodeAnalysis.CSharp/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.1.1]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CodeAnalysis.VisualBasic/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "1.1.1" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll": {} + } + }, + "Microsoft.CSharp/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "type": "package", + "compile": { + "lib/netstandard1.6/Dia2Lib.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll": {}, + "lib/netstandard1.6/OSExtensions.dll": {}, + "lib/netstandard1.6/TraceReloggerLib.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Dia2Lib.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll": {}, + "lib/netstandard1.6/OSExtensions.dll": {}, + "lib/netstandard1.6/TraceReloggerLib.dll": {} + }, + "build": { + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props": {} + } + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/12.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.3.0", + "NETStandard.Library": "1.6.1", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Runtime.Serialization.Formatters": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Newtonsoft.Json.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Diagnostics.Debug": "4.0.0", + "System.Globalization": "4.0.0", + "System.Linq": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "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.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Console/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Metadata/1.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Collections.Immutable": "1.1.37", + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.InteropServices": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Text.Encoding.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.2/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/dotnet5.2/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp80+wpa81/_._": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Loader/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} + }, + "runtime": { + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.ValueTuple/4.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "[2.4.1-pre.build.4059]", + "xunit.core": "[2.4.1-pre.build.4059]" + } + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + } + }, + "xunit.analyzers/0.10.0": { + "type": "package" + }, + "xunit.assert/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.1/xunit.assert.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.assert.dll": {} + } + }, + "xunit.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.1-pre.build.4059]", + "xunit.extensibility.execution": "[2.4.1-pre.build.4059]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "[2.4.1-pre.build.4059]" + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + } + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "CommandLineParser": "2.1.1-beta", + "Microsoft.3rdpartytools.MarkdownLog": "0.10.0-alpha-experimental", + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.ValueTuple": "4.3.1", + "System.Xml.XmlSerializer": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015", + "xunit.performance.execution": "1.0.0-beta-build0015", + "xunit.performance.metrics": "1.0.0-beta-build0015", + "xunit.runner.utility": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + } + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + } + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit": "2.2.0-beta2-build3300", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + } + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Formatters": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + } + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "type": "package", + "build": { + "build/xunit.runner.console.props": {} + } + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "System.Runtime.Loader": "4.0.0", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll": {} + } + } + }, + ".NETCoreApp,Version=v1.1/win7-x64": { + "CommandLineParser/2.1.1-beta": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-24027", + "System.Console": "4.0.0-rc2-24027", + "System.Diagnostics.Debug": "4.0.11-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.IO": "4.1.0-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Linq.Expressions": "4.0.11-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Reflection.Extensions": "4.0.1-rc2-24027", + "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime": "4.1.0-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027" + }, + "compile": { + "lib/netstandard1.5/CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard1.5/CommandLine.dll": {} + } + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "type": "package" + }, + "Microsoft.CodeAnalysis.Common/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "1.1.0", + "System.Collections.Immutable": "1.1.37", + "System.Reflection.Metadata": "1.1.0" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.Compilers/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "[1.1.1]", + "Microsoft.CodeAnalysis.VisualBasic": "[1.1.1]" + } + }, + "Microsoft.CodeAnalysis.CSharp/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.1.1]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CodeAnalysis.VisualBasic/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "1.1.1" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll": {} + } + }, + "Microsoft.CSharp/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "type": "package", + "compile": { + "lib/netstandard1.6/Dia2Lib.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll": {}, + "lib/netstandard1.6/OSExtensions.dll": {}, + "lib/netstandard1.6/TraceReloggerLib.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Dia2Lib.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll": {}, + "lib/netstandard1.6/OSExtensions.dll": {}, + "lib/netstandard1.6/TraceReloggerLib.dll": {} + }, + "build": { + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props": {} + } + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.win.Microsoft.Win32.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/12.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.3.0", + "NETStandard.Library": "1.6.1", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Runtime.Serialization.Formatters": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Newtonsoft.Json.dll": {} + } + }, + "runtime.any.System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tools/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.Tools.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "runtime.any.System.Globalization/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.dll": {} + } + }, + "runtime.any.System.Globalization.Calendars/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "runtime.any.System.IO/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.IO.dll": {} + } + }, + "runtime.any.System.Reflection/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.dll": {} + } + }, + "runtime.any.System.Reflection.Extensions/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Extensions.dll": {} + } + }, + "runtime.any.System.Reflection.Primitives/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Primitives.dll": {} + } + }, + "runtime.any.System.Resources.ResourceManager/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Resources.ResourceManager.dll": {} + } + }, + "runtime.any.System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.dll": {} + } + }, + "runtime.any.System.Runtime.Handles/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "runtime.any.System.Runtime.InteropServices/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Runtime.InteropServices.dll": {} + } + }, + "runtime.any.System.Text.Encoding/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "runtime.any.System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "runtime.any.System.Threading.Tasks/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "runtime.any.System.Threading.Timer/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Timer.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.win7-x64.runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.win.Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.win.System.Console/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Console.dll": {} + } + }, + "runtime.win.System.Diagnostics.Debug/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.win.System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Overlapped": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "runtime.win.System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "runtime.win.System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Net.NameResolution": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal.Windows": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Overlapped": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "runtime.win.System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "runtime.win7-x64.runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "native": { + "runtimes/win7-x64/native/clrcompression.dll": {} + } + }, + "runtime.win7.System.Private.Uri/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.0/System.Private.Uri.dll": {} + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.1/System.Buffers.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Collections": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Diagnostics.Debug": "4.0.0", + "System.Globalization": "4.0.0", + "System.Linq": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "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.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Console/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.win.System.Console": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.win.System.Diagnostics.Debug": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Diagnostics.Tools": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Diagnostics.Tracing": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization.Calendars": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.any.System.IO": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {} + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.win.System.IO.FileSystem": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {} + } + }, + "System.Net.NameResolution/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal.Windows": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {} + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.win.System.Net.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.win.System.Net.Sockets": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Private.Uri/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.win7.System.Private.Uri": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Metadata/1.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Collections.Immutable": "1.1.37", + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.InteropServices": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Text.Encoding.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.2/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/dotnet5.2/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Resources.ResourceManager": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.any.System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp80+wpa81/_._": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.win.System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.any.System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "System.Runtime.Loader/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} + }, + "runtime": { + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.Claims/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Security.Principal": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Claims": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll": {} + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.any.System.Text.Encoding.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Threading.Timer": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.ValueTuple/4.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "[2.4.1-pre.build.4059]", + "xunit.core": "[2.4.1-pre.build.4059]" + } + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + } + }, + "xunit.analyzers/0.10.0": { + "type": "package" + }, + "xunit.assert/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.1/xunit.assert.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.assert.dll": {} + } + }, + "xunit.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.1-pre.build.4059]", + "xunit.extensibility.execution": "[2.4.1-pre.build.4059]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "[2.4.1-pre.build.4059]" + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + } + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "CommandLineParser": "2.1.1-beta", + "Microsoft.3rdpartytools.MarkdownLog": "0.10.0-alpha-experimental", + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.ValueTuple": "4.3.1", + "System.Xml.XmlSerializer": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015", + "xunit.performance.execution": "1.0.0-beta-build0015", + "xunit.performance.metrics": "1.0.0-beta-build0015", + "xunit.runner.utility": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + } + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + } + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit": "2.2.0-beta2-build3300", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + } + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Formatters": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + } + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "type": "package", + "build": { + "build/xunit.runner.console.props": {} + } + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "System.Runtime.Loader": "4.0.0", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll": {} + } + } + }, + ".NETCoreApp,Version=v1.1/win7-x86": { + "CommandLineParser/2.1.1-beta": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-24027", + "System.Console": "4.0.0-rc2-24027", + "System.Diagnostics.Debug": "4.0.11-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.IO": "4.1.0-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Linq.Expressions": "4.0.11-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Reflection.Extensions": "4.0.1-rc2-24027", + "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime": "4.1.0-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027" + }, + "compile": { + "lib/netstandard1.5/CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard1.5/CommandLine.dll": {} + } + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "type": "package" + }, + "Microsoft.CodeAnalysis.Common/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "1.1.0", + "System.Collections.Immutable": "1.1.37", + "System.Reflection.Metadata": "1.1.0" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.Compilers/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "[1.1.1]", + "Microsoft.CodeAnalysis.VisualBasic": "[1.1.1]" + } + }, + "Microsoft.CodeAnalysis.CSharp/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.1.1]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CodeAnalysis.VisualBasic/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "1.1.1" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll": {} + } + }, + "Microsoft.CSharp/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "type": "package", + "compile": { + "lib/netstandard1.6/Dia2Lib.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll": {}, + "lib/netstandard1.6/OSExtensions.dll": {}, + "lib/netstandard1.6/TraceReloggerLib.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Dia2Lib.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll": {}, + "lib/netstandard1.6/OSExtensions.dll": {}, + "lib/netstandard1.6/TraceReloggerLib.dll": {} + }, + "build": { + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props": {} + } + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.win.Microsoft.Win32.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/12.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.3.0", + "NETStandard.Library": "1.6.1", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Runtime.Serialization.Formatters": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Newtonsoft.Json.dll": {} + } + }, + "runtime.any.System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tools/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.Tools.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "runtime.any.System.Globalization/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.dll": {} + } + }, + "runtime.any.System.Globalization.Calendars/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "runtime.any.System.IO/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.IO.dll": {} + } + }, + "runtime.any.System.Reflection/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.dll": {} + } + }, + "runtime.any.System.Reflection.Extensions/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Extensions.dll": {} + } + }, + "runtime.any.System.Reflection.Primitives/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Primitives.dll": {} + } + }, + "runtime.any.System.Resources.ResourceManager/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Resources.ResourceManager.dll": {} + } + }, + "runtime.any.System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.dll": {} + } + }, + "runtime.any.System.Runtime.Handles/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "runtime.any.System.Runtime.InteropServices/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Runtime.InteropServices.dll": {} + } + }, + "runtime.any.System.Text.Encoding/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "runtime.any.System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "runtime.any.System.Threading.Tasks/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "runtime.any.System.Threading.Timer/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Timer.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.win7-x86.runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package" + }, + "runtime.win.Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.win.System.Console/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Console.dll": {} + } + }, + "runtime.win.System.Diagnostics.Debug/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.win.System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Overlapped": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "runtime.win.System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "runtime.win.System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Net.NameResolution": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal.Windows": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Overlapped": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "runtime.win.System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "runtime.win7-x86.runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "native": { + "runtimes/win7-x86/native/clrcompression.dll": {} + } + }, + "runtime.win7.System.Private.Uri/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.0/System.Private.Uri.dll": {} + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.1/System.Buffers.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Collections": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Diagnostics.Debug": "4.0.0", + "System.Globalization": "4.0.0", + "System.Linq": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "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.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Console/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.win.System.Console": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.win.System.Diagnostics.Debug": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Diagnostics.Tools": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Diagnostics.Tracing": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization.Calendars": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.any.System.IO": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {} + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.win.System.IO.FileSystem": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {} + } + }, + "System.Net.NameResolution/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal.Windows": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {} + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.win.System.Net.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.win.System.Net.Sockets": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Private.Uri/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.win7.System.Private.Uri": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Metadata/1.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Collections.Immutable": "1.1.37", + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.InteropServices": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Text.Encoding.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.2/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/dotnet5.2/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Resources.ResourceManager": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.any.System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp80+wpa81/_._": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.win.System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.any.System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "System.Runtime.Loader/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} + }, + "runtime": { + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.Claims/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Security.Principal": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Claims": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll": {} + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.any.System.Text.Encoding.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Threading.Timer": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.ValueTuple/4.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "[2.4.1-pre.build.4059]", + "xunit.core": "[2.4.1-pre.build.4059]" + } + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + } + }, + "xunit.analyzers/0.10.0": { + "type": "package" + }, + "xunit.assert/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.1/xunit.assert.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.assert.dll": {} + } + }, + "xunit.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.1-pre.build.4059]", + "xunit.extensibility.execution": "[2.4.1-pre.build.4059]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "[2.4.1-pre.build.4059]" + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + } + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "CommandLineParser": "2.1.1-beta", + "Microsoft.3rdpartytools.MarkdownLog": "0.10.0-alpha-experimental", + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.ValueTuple": "4.3.1", + "System.Xml.XmlSerializer": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015", + "xunit.performance.execution": "1.0.0-beta-build0015", + "xunit.performance.metrics": "1.0.0-beta-build0015", + "xunit.runner.utility": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + } + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + } + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit": "2.2.0-beta2-build3300", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + } + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Formatters": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + } + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "type": "package", + "build": { + "build/xunit.runner.console.props": {} + } + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "System.Runtime.Loader": "4.0.0", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll": {} + } + } + } + }, + "libraries": { + "CommandLineParser/2.1.1-beta": { + "sha512": "TmWNdtqLmtqLbwr0c9l1nEjjk39GB7wevl+1rxN907kjmdUUu5s470bWJFPEckfjYTnZ216xziW5fMXP35KVXg==", + "type": "package", + "path": "commandlineparser/2.1.1-beta", + "files": [ + ".nupkg.metadata", + "commandlineparser.2.1.1-beta.nupkg.sha512", + "commandlineparser.nuspec", + "lib/net40/CommandLine.XML", + "lib/net40/CommandLine.dll", + "lib/net45/CommandLine.XML", + "lib/net45/CommandLine.dll", + "lib/netstandard1.5/CommandLine.dll", + "lib/netstandard1.5/CommandLine.xml", + "readme.md" + ] + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "sha512": "BlzmPbwd0w2OGgXHFRWYu0tsJj6f6rAglvZ5q5hi71TGl6DDCZjP7WmMvcEFZi5MGGWkZ3VoPXQ4hJMMuGJF6A==", + "type": "package", + "path": "microsoft.3rdpartytools.markdownlog/0.10.0-alpha-experimental", + "files": [ + ".nupkg.metadata", + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll", + "microsoft.3rdpartytools.markdownlog.0.10.0-alpha-experimental.nupkg.sha512", + "microsoft.3rdpartytools.markdownlog.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "sha512": "HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/1.1.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.rtf", + "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", + "microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.1.1": { + "sha512": "r958nYjnl//vgjLljJLu52N2FJKlKYF5pqzyXM/C6K0w8uMcKIkJS4RXygqRBhW7ZjlsJXfiEX/JxLeDxMQUWQ==", + "type": "package", + "path": "microsoft.codeanalysis.common/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "microsoft.codeanalysis.common.1.1.1.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Compilers/1.1.1": { + "sha512": "tqCaCYlRDRra+vI7LRpDhbCdk1grzaNENCij8DOpAnTf8hR3WMcjGGD+PxWNkLFGJcfzNUbIFhb39onmVZI5KQ==", + "type": "package", + "path": "microsoft.codeanalysis.compilers/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "microsoft.codeanalysis.compilers.1.1.1.nupkg.sha512", + "microsoft.codeanalysis.compilers.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.1.1": { + "sha512": "HH8f/KK4fjTWNaKhHPgjF1Hm7lGMEB6A3DK+CUzW9ZbudZTFdNwb3Oa4qDZ25HWF+ifImSdu+1bLgqKCWRbsNQ==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "microsoft.codeanalysis.csharp.1.1.1.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeAnalysis.VisualBasic/1.1.1": { + "sha512": "QFOiWdSHCJwy1usS/7Ka+VAAhtXeEwQCDOd1iKGllGgcJuSiwtLEchxfOkXKsFtNq0P03mVEDRfUxc+6XHR60A==", + "type": "package", + "path": "microsoft.codeanalysis.visualbasic/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "lib/net45/Microsoft.CodeAnalysis.VisualBasic.dll", + "lib/net45/Microsoft.CodeAnalysis.VisualBasic.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.xml", + "microsoft.codeanalysis.visualbasic.1.1.1.nupkg.sha512", + "microsoft.codeanalysis.visualbasic.nuspec" + ] + }, + "Microsoft.CSharp/4.3.0": { + "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", + "type": "package", + "path": "microsoft.csharp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.3.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "sha512": "76ol4cZYvYiaiP5Vbows1ts2WDGpi/x2QxaoAToNCoGD+s2v7znzxPygPprXNYW4HmWgN8z3FsItIZb45X8OgQ==", + "type": "package", + "path": "microsoft.diagnostics.tracing.traceevent/2.0.43", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props", + "lib/native/amd64/KernelTraceControl.dll", + "lib/native/amd64/msdia140.dll", + "lib/native/x86/KernelTraceControl.Win61.dll", + "lib/native/x86/KernelTraceControl.dll", + "lib/native/x86/msdia140.dll", + "lib/net45/Dia2Lib.dll", + "lib/net45/Microsoft.Diagnostics.FastSerialization.dll", + "lib/net45/Microsoft.Diagnostics.FastSerialization.xml", + "lib/net45/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/net45/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/net45/OSExtensions.dll", + "lib/net45/TraceReloggerLib.dll", + "lib/netstandard1.6/Dia2Lib.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.xml", + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/netstandard1.6/OSExtensions.dll", + "lib/netstandard1.6/TraceReloggerLib.dll", + "lib/netstandard2.0/Dia2Lib.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.FastSerialization.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.FastSerialization.xml", + "lib/netstandard2.0/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/netstandard2.0/OSExtensions.dll", + "lib/netstandard2.0/TraceReloggerLib.dll", + "microsoft.diagnostics.tracing.traceevent.2.0.43.nupkg.sha512", + "microsoft.diagnostics.tracing.traceevent.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "type": "package", + "path": "microsoft.netcore.platforms/1.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/12.0.1": { + "sha512": "pBR3wCgYWZGiaZDYP+HHYnalVnPJlpP1q55qvVb+adrDHmFMDc1NAKio61xTwftK3Pw5h7TZJPJEEVMd6ty8rg==", + "type": "package", + "path": "newtonsoft.json/12.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.pdb", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.pdb", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.pdb", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.pdb", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.pdb", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.pdb", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.pdb", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.pdb", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.pdb", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml", + "newtonsoft.json.12.0.1.nupkg.sha512", + "newtonsoft.json.nuspec" + ] + }, + "runtime.any.System.Collections/4.3.0": { + "sha512": "23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==", + "type": "package", + "path": "runtime.any.system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.dll", + "lib/netstandard1.3/System.Collections.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.collections.4.3.0.nupkg.sha512", + "runtime.any.system.collections.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Diagnostics.Tools/4.3.0": { + "sha512": "S/GPBmfPBB48ZghLxdDR7kDAJVAqgAuThyDJho3OLP5OS4tWD2ydyL8LKm8lhiBxce10OKe9X2zZ6DUjAqEbPg==", + "type": "package", + "path": "runtime.any.system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/netstandard1.3/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tools.4.3.0.nupkg.sha512", + "runtime.any.system.diagnostics.tools.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Diagnostics.Tracing/4.3.0": { + "sha512": "1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ==", + "type": "package", + "path": "runtime.any.system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "lib/netstandard1.5/System.Diagnostics.Tracing.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512", + "runtime.any.system.diagnostics.tracing.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Globalization/4.3.0": { + "sha512": "sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==", + "type": "package", + "path": "runtime.any.system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Globalization.dll", + "lib/netstandard1.3/System.Globalization.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.4.3.0.nupkg.sha512", + "runtime.any.system.globalization.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Globalization.Calendars/4.3.0": { + "sha512": "M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w==", + "type": "package", + "path": "runtime.any.system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net/_._", + "lib/netcore50/System.Globalization.Calendars.dll", + "lib/netstandard1.3/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512", + "runtime.any.system.globalization.calendars.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.IO/4.3.0": { + "sha512": "SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==", + "type": "package", + "path": "runtime.any.system.io/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.IO.dll", + "lib/netstandard1.5/System.IO.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.io.4.3.0.nupkg.sha512", + "runtime.any.system.io.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Reflection/4.3.0": { + "sha512": "hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==", + "type": "package", + "path": "runtime.any.system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.dll", + "lib/netstandard1.5/System.Reflection.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.4.3.0.nupkg.sha512", + "runtime.any.system.reflection.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Reflection.Extensions/4.3.0": { + "sha512": "cPhT+Vqu52+cQQrDai/V91gubXUnDKNRvlBnH+hOgtGyHdC17aQIU64EaehwAQymd7kJA5rSrVRNfDYrbhnzyA==", + "type": "package", + "path": "runtime.any.system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/netstandard1.3/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512", + "runtime.any.system.reflection.extensions.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Reflection.Primitives/4.3.0": { + "sha512": "Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==", + "type": "package", + "path": "runtime.any.system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/netstandard1.3/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512", + "runtime.any.system.reflection.primitives.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Resources.ResourceManager/4.3.0": { + "sha512": "Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==", + "type": "package", + "path": "runtime.any.system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/netstandard1.3/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512", + "runtime.any.system.resources.resourcemanager.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Runtime/4.3.0": { + "sha512": "fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==", + "type": "package", + "path": "runtime.any.system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.dll", + "lib/netstandard1.5/System.Runtime.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.4.3.0.nupkg.sha512", + "runtime.any.system.runtime.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Runtime.Handles/4.3.0": { + "sha512": "GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==", + "type": "package", + "path": "runtime.any.system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netstandard1.3/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512", + "runtime.any.system.runtime.handles.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Runtime.InteropServices/4.3.0": { + "sha512": "lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==", + "type": "package", + "path": "runtime.any.system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "lib/netstandard1.5/System.Runtime.InteropServices.dll", + "lib/netstandard1.6/System.Runtime.InteropServices.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512", + "runtime.any.system.runtime.interopservices.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Text.Encoding/4.3.0": { + "sha512": "+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==", + "type": "package", + "path": "runtime.any.system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/netstandard1.3/System.Text.Encoding.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.4.3.0.nupkg.sha512", + "runtime.any.system.text.encoding.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Text.Encoding.Extensions/4.3.0": { + "sha512": "NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg==", + "type": "package", + "path": "runtime.any.system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512", + "runtime.any.system.text.encoding.extensions.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Threading.Tasks/4.3.0": { + "sha512": "OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==", + "type": "package", + "path": "runtime.any.system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/netstandard1.3/System.Threading.Tasks.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512", + "runtime.any.system.threading.tasks.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Threading.Timer/4.3.0": { + "sha512": "w4ehZJ+AwXYmGwYu+rMvym6RvMaRiUEQR1u6dwcyuKHxz8Heu/mO9AG1MquEgTyucnhv3M43X0iKpDOoN17C0w==", + "type": "package", + "path": "runtime.any.system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/netstandard1.3/System.Threading.Timer.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.timer.4.3.0.nupkg.sha512", + "runtime.any.system.threading.timer.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.win.Microsoft.Win32.Primitives/4.3.0": { + "sha512": "NU51SEt/ZaD2MF48sJ17BIqx7rjeNNLXUevfMOjqQIetdndXwYjZfZsT6jD+rSWp/FYxjesdK4xUSl4OTEI0jw==", + "type": "package", + "path": "runtime.win.microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.microsoft.win32.primitives.4.3.0.nupkg.sha512", + "runtime.win.microsoft.win32.primitives.nuspec", + "runtimes/win/lib/net/_._", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll" + ] + }, + "runtime.win.System.Console/4.3.0": { + "sha512": "RRACWygml5dnmfgC1SW6tLGsFgwsUAKFtvhdyHnIEz4EhWyrd7pacDdY95CacQJy7BMXRDRCejC9aCRC0Y1sQA==", + "type": "package", + "path": "runtime.win.system.console/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.system.console.4.3.0.nupkg.sha512", + "runtime.win.system.console.nuspec", + "runtimes/win/lib/net/_._", + "runtimes/win/lib/netcore50/System.Console.dll", + "runtimes/win/lib/netstandard1.3/System.Console.dll" + ] + }, + "runtime.win.System.Diagnostics.Debug/4.3.0": { + "sha512": "hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g==", + "type": "package", + "path": "runtime.win.system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.system.diagnostics.debug.4.3.0.nupkg.sha512", + "runtime.win.system.diagnostics.debug.nuspec", + "runtimes/aot/lib/netcore50/System.Diagnostics.Debug.dll", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netcore50/System.Diagnostics.Debug.dll", + "runtimes/win/lib/netstandard1.3/System.Diagnostics.Debug.dll", + "runtimes/win/lib/win8/_._", + "runtimes/win/lib/wp80/_._", + "runtimes/win/lib/wpa81/_._" + ] + }, + "runtime.win.System.IO.FileSystem/4.3.0": { + "sha512": "Z37zcSCpXuGCYtFbqYO0TwOVXxS2d+BXgSoDFZmRg8BC4Cuy54edjyIvhhcfCrDQA9nl+EPFTgHN54dRAK7mNA==", + "type": "package", + "path": "runtime.win.system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.system.io.filesystem.4.3.0.nupkg.sha512", + "runtime.win.system.io.filesystem.nuspec", + "runtimes/win/lib/net/_._", + "runtimes/win/lib/netcore50/System.IO.FileSystem.dll", + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.dll", + "runtimes/win/lib/win8/_._", + "runtimes/win/lib/wp8/_._", + "runtimes/win/lib/wpa81/_._" + ] + }, + "runtime.win.System.Net.Primitives/4.3.0": { + "sha512": "lkXXykakvXUU+Zq2j0pC6EO20lEhijjqMc01XXpp1CJN+DeCwl3nsj4t5Xbpz3kA7yQyTqw6d9SyIzsyLsV3zA==", + "type": "package", + "path": "runtime.win.system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.system.net.primitives.4.3.0.nupkg.sha512", + "runtime.win.system.net.primitives.nuspec", + "runtimes/win/lib/net/_._", + "runtimes/win/lib/netcore50/System.Net.Primitives.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Primitives.dll" + ] + }, + "runtime.win.System.Net.Sockets/4.3.0": { + "sha512": "FK/2gX6MmuLIKNCGsV59Fe4IYrLrI5n9pQ1jh477wiivEM/NCXDT2dRetH5FSfY0bQ+VgTLcS3zcmjQ8my3nxQ==", + "type": "package", + "path": "runtime.win.system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.system.net.sockets.4.3.0.nupkg.sha512", + "runtime.win.system.net.sockets.nuspec", + "runtimes/win/lib/net/_._", + "runtimes/win/lib/netcore50/System.Net.Sockets.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Sockets.dll" + ] + }, + "runtime.win.System.Runtime.Extensions/4.3.0": { + "sha512": "RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==", + "type": "package", + "path": "runtime.win.system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512", + "runtime.win.system.runtime.extensions.nuspec", + "runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll", + "runtimes/win/lib/net/_._", + "runtimes/win/lib/netcore50/System.Runtime.Extensions.dll", + "runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll" + ] + }, + "runtime.win7-x64.runtime.native.System.IO.Compression/4.3.0": { + "sha512": "UamDlgSO/nIzc96M+g3wbvAGbAuXjvRYR5Ttm/FVJgt2iva8ouOqSJ0j6eGI7pZDLvD/ZISl9XRZOajE/Xvizg==", + "type": "package", + "path": "runtime.win7-x64.runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win7-x64.runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.win7-x64.runtime.native.system.io.compression.nuspec", + "runtimes/win7-x64/native/clrcompression.dll" + ] + }, + "runtime.win7-x86.runtime.native.System.IO.Compression/4.3.0": { + "sha512": "99pM1ZhX7dPNnr/dOxuAxnVl/2XNWRh1WAUfesV3ZKwbR6mnEzpfbz2GX69zrpGvKbEytsjMKCD+auvvH6f7kA==", + "type": "package", + "path": "runtime.win7-x86.runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win7-x86.runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.win7-x86.runtime.native.system.io.compression.nuspec", + "runtimes/win7-x86/native/clrcompression.dll" + ] + }, + "runtime.win7.System.Private.Uri/4.3.0": { + "sha512": "Q+IBgaPYicSQs2tBlmXqbS25c/JLIthWrgrpMwxKSOobW/OqIMVFruUGfuaz4QABVzV8iKdCAbN7APY7Tclbnw==", + "type": "package", + "path": "runtime.win7.system.private.uri/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win7.system.private.uri.4.3.0.nupkg.sha512", + "runtime.win7.system.private.uri.nuspec", + "runtimes/aot/lib/netcore50/System.Private.Uri.dll", + "runtimes/win/lib/netcore50/System.Private.Uri.dll", + "runtimes/win/lib/netstandard1.0/System.Private.Uri.dll" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.3.0": { + "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "type": "package", + "path": "system.buffers/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/.xml", + "lib/netstandard1.1/System.Buffers.dll", + "system.buffers.4.3.0.nupkg.sha512", + "system.buffers.nuspec" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.3.0": { + "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "type": "package", + "path": "system.collections.concurrent/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.3.0.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37": { + "sha512": "fTpqwZYBzoklTT+XjTRK8KxvmrGkYHzBiylCcKyQcxiOM8k+QvhNBxRvFHDWzy4OEP5f8/9n+xQ9mEgEXY+muA==", + "type": "package", + "path": "system.collections.immutable/1.1.37", + "files": [ + ".nupkg.metadata", + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.1.1.37.nupkg.sha512", + "system.collections.immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.3.0": { + "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "type": "package", + "path": "system.collections.nongeneric/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.3.0.nupkg.sha512", + "system.collections.nongeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.3.0": { + "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "type": "package", + "path": "system.collections.specialized/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.Specialized.dll", + "lib/netstandard1.3/System.Collections.Specialized.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.xml", + "ref/netstandard1.3/de/System.Collections.Specialized.xml", + "ref/netstandard1.3/es/System.Collections.Specialized.xml", + "ref/netstandard1.3/fr/System.Collections.Specialized.xml", + "ref/netstandard1.3/it/System.Collections.Specialized.xml", + "ref/netstandard1.3/ja/System.Collections.Specialized.xml", + "ref/netstandard1.3/ko/System.Collections.Specialized.xml", + "ref/netstandard1.3/ru/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.specialized.4.3.0.nupkg.sha512", + "system.collections.specialized.nuspec" + ] + }, + "System.ComponentModel/4.3.0": { + "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "type": "package", + "path": "system.componentmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.4.3.0.nupkg.sha512", + "system.componentmodel.nuspec" + ] + }, + "System.ComponentModel.Primitives/4.3.0": { + "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "type": "package", + "path": "system.componentmodel.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.Primitives.dll", + "lib/netstandard1.0/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.primitives.4.3.0.nupkg.sha512", + "system.componentmodel.primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "type": "package", + "path": "system.componentmodel.typeconverter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/net462/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/net462/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "system.componentmodel.typeconverter.nuspec" + ] + }, + "System.Console/4.3.0": { + "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "type": "package", + "path": "system.console/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.3.0.nupkg.sha512", + "system.console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.3.0": { + "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "type": "package", + "path": "system.dynamic.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.3.0.nupkg.sha512", + "system.dynamic.runtime.nuspec" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.3.0": { + "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "type": "package", + "path": "system.linq.expressions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.3.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.NameResolution/4.3.0": { + "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==", + "type": "package", + "path": "system.net.nameresolution/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.NameResolution.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.xml", + "ref/netstandard1.3/de/System.Net.NameResolution.xml", + "ref/netstandard1.3/es/System.Net.NameResolution.xml", + "ref/netstandard1.3/fr/System.Net.NameResolution.xml", + "ref/netstandard1.3/it/System.Net.NameResolution.xml", + "ref/netstandard1.3/ja/System.Net.NameResolution.xml", + "ref/netstandard1.3/ko/System.Net.NameResolution.xml", + "ref/netstandard1.3/ru/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", + "runtimes/win/lib/net46/System.Net.NameResolution.dll", + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll", + "system.net.nameresolution.4.3.0.nupkg.sha512", + "system.net.nameresolution.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.ObjectModel/4.3.0": { + "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "type": "package", + "path": "system.objectmodel/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Private.Uri/4.3.0": { + "sha512": "I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==", + "type": "package", + "path": "system.private.uri/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "system.private.uri.4.3.0.nupkg.sha512", + "system.private.uri.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.1.0": { + "sha512": "RLIE4sSt2zngMLuqM6YmxBH99mTumtT4DNZE4+msfEaInUP5iCLQT+BHPl+2cjSAP1pdALyAjLB8RtCB+WGGWQ==", + "type": "package", + "path": "system.reflection.metadata/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/dotnet5.2/System.Reflection.Metadata.dll", + "lib/dotnet5.2/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.1.1.0.nupkg.sha512", + "system.reflection.metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0": { + "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==", + "type": "package", + "path": "system.runtime.loader/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net462/_._", + "lib/netstandard1.5/System.Runtime.Loader.dll", + "ref/netstandard1.5/System.Runtime.Loader.dll", + "ref/netstandard1.5/System.Runtime.Loader.xml", + "ref/netstandard1.5/de/System.Runtime.Loader.xml", + "ref/netstandard1.5/es/System.Runtime.Loader.xml", + "ref/netstandard1.5/fr/System.Runtime.Loader.xml", + "ref/netstandard1.5/it/System.Runtime.Loader.xml", + "ref/netstandard1.5/ja/System.Runtime.Loader.xml", + "ref/netstandard1.5/ko/System.Runtime.Loader.xml", + "ref/netstandard1.5/ru/System.Runtime.Loader.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml", + "system.runtime.loader.4.0.0.nupkg.sha512", + "system.runtime.loader.nuspec" + ] + }, + "System.Runtime.Numerics/4.3.0": { + "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==", + "type": "package", + "path": "system.runtime.serialization.formatters/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Runtime.Serialization.Formatters.dll", + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Runtime.Serialization.Formatters.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.serialization.formatters.4.3.0.nupkg.sha512", + "system.runtime.serialization.formatters.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Primitives.dll", + "lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "system.runtime.serialization.primitives.4.3.0.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec" + ] + }, + "System.Security.Claims/4.3.0": { + "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==", + "type": "package", + "path": "system.security.claims/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/netstandard1.3/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.xml", + "ref/netstandard1.3/de/System.Security.Claims.xml", + "ref/netstandard1.3/es/System.Security.Claims.xml", + "ref/netstandard1.3/fr/System.Security.Claims.xml", + "ref/netstandard1.3/it/System.Security.Claims.xml", + "ref/netstandard1.3/ja/System.Security.Claims.xml", + "ref/netstandard1.3/ko/System.Security.Claims.xml", + "ref/netstandard1.3/ru/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hans/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hant/System.Security.Claims.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.claims.4.3.0.nupkg.sha512", + "system.security.claims.nuspec" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.3.0": { + "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "type": "package", + "path": "system.security.cryptography.cng/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net463/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net463/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "system.security.cryptography.cng.4.3.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Principal/4.3.0": { + "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==", + "type": "package", + "path": "system.security.principal/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/netstandard1.0/System.Security.Principal.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/netcore50/de/System.Security.Principal.xml", + "ref/netcore50/es/System.Security.Principal.xml", + "ref/netcore50/fr/System.Security.Principal.xml", + "ref/netcore50/it/System.Security.Principal.xml", + "ref/netcore50/ja/System.Security.Principal.xml", + "ref/netcore50/ko/System.Security.Principal.xml", + "ref/netcore50/ru/System.Security.Principal.xml", + "ref/netcore50/zh-hans/System.Security.Principal.xml", + "ref/netcore50/zh-hant/System.Security.Principal.xml", + "ref/netstandard1.0/System.Security.Principal.dll", + "ref/netstandard1.0/System.Security.Principal.xml", + "ref/netstandard1.0/de/System.Security.Principal.xml", + "ref/netstandard1.0/es/System.Security.Principal.xml", + "ref/netstandard1.0/fr/System.Security.Principal.xml", + "ref/netstandard1.0/it/System.Security.Principal.xml", + "ref/netstandard1.0/ja/System.Security.Principal.xml", + "ref/netstandard1.0/ko/System.Security.Principal.xml", + "ref/netstandard1.0/ru/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hans/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hant/System.Security.Principal.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.principal.4.3.0.nupkg.sha512", + "system.security.principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.3.0": { + "sha512": "HVL1rvqYtnRCxFsYag/2le/ZfKLK4yMw79+s6FmKXbSCNN0JeAhrYxnRAHFoWRa0dEojsDcbBSpH3l22QxAVyw==", + "type": "package", + "path": "system.security.principal.windows/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "system.security.principal.windows.4.3.0.nupkg.sha512", + "system.security.principal.windows.nuspec" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.3.0": { + "sha512": "m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==", + "type": "package", + "path": "system.threading.overlapped/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "ref/netstandard1.3/System.Threading.Overlapped.dll", + "ref/netstandard1.3/System.Threading.Overlapped.xml", + "ref/netstandard1.3/de/System.Threading.Overlapped.xml", + "ref/netstandard1.3/es/System.Threading.Overlapped.xml", + "ref/netstandard1.3/fr/System.Threading.Overlapped.xml", + "ref/netstandard1.3/it/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ja/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ko/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ru/System.Threading.Overlapped.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml", + "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll", + "runtimes/win/lib/net46/System.Threading.Overlapped.dll", + "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll", + "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll", + "system.threading.overlapped.4.3.0.nupkg.sha512", + "system.threading.overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", + "type": "package", + "path": "system.threading.tasks.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "system.threading.tasks.extensions.4.3.0.nupkg.sha512", + "system.threading.tasks.extensions.nuspec" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.ValueTuple/4.3.1": { + "sha512": "xzDmg26Wb2x2rFDjwziaMYQJqxhrK+b4OUC008o7CnZhUMb2p5XfwgOgAQ/WlKhqxMUSDWRUm5/lNTKdh27pJA==", + "type": "package", + "path": "system.valuetuple/4.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netstandard1.0/.xml", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/.xml", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.3.1.nupkg.sha512", + "system.valuetuple.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.3.0": { + "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "type": "package", + "path": "system.xml.xmldocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.3.0.nupkg.sha512", + "system.xml.xmldocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.3.0": { + "sha512": "MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==", + "type": "package", + "path": "system.xml.xmlserializer/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "lib/netstandard1.3/System.Xml.XmlSerializer.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XmlSerializer.dll", + "ref/netcore50/System.Xml.XmlSerializer.xml", + "ref/netcore50/de/System.Xml.XmlSerializer.xml", + "ref/netcore50/es/System.Xml.XmlSerializer.xml", + "ref/netcore50/fr/System.Xml.XmlSerializer.xml", + "ref/netcore50/it/System.Xml.XmlSerializer.xml", + "ref/netcore50/ja/System.Xml.XmlSerializer.xml", + "ref/netcore50/ko/System.Xml.XmlSerializer.xml", + "ref/netcore50/ru/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/System.Xml.XmlSerializer.dll", + "ref/netstandard1.0/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/de/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/es/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/it/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/System.Xml.XmlSerializer.dll", + "ref/netstandard1.3/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/de/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/es/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/it/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "system.xml.xmlserializer.4.3.0.nupkg.sha512", + "system.xml.xmlserializer.nuspec" + ] + }, + "xunit/2.4.1-pre.build.4059": { + "sha512": "Kt50VVI9yqbPLPICi1J2Sl2zoidhyMqbT+ywCSINDDXCJhVOXVBoE/1geWui5Sppx8Cv5U0DmYCLxveaOB0mLw==", + "type": "package", + "path": "xunit/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "xunit.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.nuspec" + ] + }, + "xunit.abstractions/2.0.3": { + "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", + "type": "package", + "path": "xunit.abstractions/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/netstandard1.0/xunit.abstractions.dll", + "lib/netstandard1.0/xunit.abstractions.xml", + "lib/netstandard2.0/xunit.abstractions.dll", + "lib/netstandard2.0/xunit.abstractions.xml", + "xunit.abstractions.2.0.3.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.analyzers/0.10.0": { + "sha512": "4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg==", + "type": "package", + "path": "xunit.analyzers/0.10.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/xunit.analyzers.dll", + "tools/install.ps1", + "tools/uninstall.ps1", + "xunit.analyzers.0.10.0.nupkg.sha512", + "xunit.analyzers.nuspec" + ] + }, + "xunit.assert/2.4.1-pre.build.4059": { + "sha512": "PrfmhpgBTilGWP4DC6Q2FV17TEfTpnCARMjYNMQvUF1IFV5DhXNU5ChC0JeL17ctp89krn4Pld4/Wiuq4ILMxw==", + "type": "package", + "path": "xunit.assert/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.1/xunit.assert.dll", + "lib/netstandard1.1/xunit.assert.xml", + "lib/netstandard2.0/xunit.assert.dll", + "lib/netstandard2.0/xunit.assert.xml", + "xunit.assert.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.core/2.4.1-pre.build.4059": { + "sha512": "nQh89ZP+wmC79euBg5p/6Jr8rugPTQo/GAx9Wry2Pgu9q4ltDv9XeQTqsQE/trvqOjyrTRtCOQT1P+vcufj0Kg==", + "type": "package", + "path": "xunit.core/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/xunit.core.props", + "build/xunit.core.targets", + "buildMultiTargeting/xunit.core.props", + "buildMultiTargeting/xunit.core.targets", + "xunit.core.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.core.nuspec" + ] + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "sha512": "MpnCaHPR67FdYgdkbzuSIxtYdGJaY6WwjotyvifGKcy94M3Rm2eCQqKQsFSN1TbcRhHRCweOo24+E+wnGxjuTw==", + "type": "package", + "path": "xunit.extensibility.core/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/xunit.core.dll", + "lib/net452/xunit.core.dll.tdnet", + "lib/net452/xunit.core.xml", + "lib/net452/xunit.runner.tdnet.dll", + "lib/net452/xunit.runner.utility.net452.dll", + "lib/netstandard1.1/xunit.core.dll", + "lib/netstandard1.1/xunit.core.xml", + "lib/netstandard2.0/xunit.core.dll", + "lib/netstandard2.0/xunit.core.xml", + "xunit.extensibility.core.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "sha512": "sLmjOlIAAs4omfY/019PQMXWkxpxd/CfVnTEMBBEN89fU/bPfeoNRBjnqJ54tHpK2xDCPUye19PNSFH4aW6B8Q==", + "type": "package", + "path": "xunit.extensibility.execution/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/xunit.execution.desktop.dll", + "lib/net452/xunit.execution.desktop.xml", + "lib/netstandard1.1/xunit.execution.dotnet.dll", + "lib/netstandard1.1/xunit.execution.dotnet.xml", + "lib/netstandard2.0/xunit.execution.dotnet.dll", + "lib/netstandard2.0/xunit.execution.dotnet.xml", + "xunit.extensibility.execution.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "sha512": "FBASqurcvUoVQ52vY2LH4XUf1/Hkz9wmcuBj5IqIhEpgK+YjhWePepguSlpSre44hhhWNe5WO3XIrZ6pGTbyng==", + "type": "package", + "path": "xunit.performance.api/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.api.dll", + "lib/net461/xunit.performance.api.xml", + "lib/netstandard1.5/xunit.performance.api.dll", + "lib/netstandard1.5/xunit.performance.api.xml", + "xunit.performance.api.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.api.nuspec" + ] + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "sha512": "1CEv1zleRb8D0mDckZjpR8VPaP+2YSeMUAnnb/a3aL0DrG9IEeTN2Uu+30IaX/OHG7iuqLX9zWja+sey76Us0w==", + "type": "package", + "path": "xunit.performance.core/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/netstandard1.3/xunit.performance.core.dll", + "lib/netstandard1.3/xunit.performance.core.xml", + "xunit.performance.core.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.core.nuspec" + ] + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "sha512": "hfNLz/+fA1CqHPQWexPoQBDMs1y1x8gdy1WgQH1nUG5Jf1KVviUddy3+MCTEbuELyqrcLpkR/p57WLUAYKwhCw==", + "type": "package", + "path": "xunit.performance.execution/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.execution.dll", + "lib/net461/xunit.performance.execution.xml", + "lib/netstandard1.5/xunit.performance.execution.dll", + "lib/netstandard1.5/xunit.performance.execution.xml", + "xunit.performance.execution.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.execution.nuspec" + ] + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "sha512": "VWtijjK9HfQvx2nmQ15hEAtBdHEmWSVk0Gc60+yEF+xMq/wZmD0jSvCykW5Jz0ponX88Z6RU39ZjRDq+vLnCgg==", + "type": "package", + "path": "xunit.performance.metrics/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.metrics.dll", + "lib/net461/xunit.performance.metrics.xml", + "lib/netstandard1.5/xunit.performance.metrics.dll", + "lib/netstandard1.5/xunit.performance.metrics.xml", + "xunit.performance.metrics.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.metrics.nuspec" + ] + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "sha512": "oWTxKNZbtkn8HBHi59zxTRP4y80SlaOqFOu+ausTLOyOPr7/aZ39U6L9F8mh69890NRbW2Qcd/UdP3YvPsseHw==", + "type": "package", + "path": "xunit.runner.console/2.4.1-pre.build.4059", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/xunit.runner.console.props", + "tools/net452/xunit.abstractions.dll", + "tools/net452/xunit.console.exe", + "tools/net452/xunit.console.exe.config", + "tools/net452/xunit.console.x86.exe", + "tools/net452/xunit.console.x86.exe.config", + "tools/net452/xunit.runner.reporters.net452.dll", + "tools/net452/xunit.runner.utility.net452.dll", + "tools/net46/xunit.abstractions.dll", + "tools/net46/xunit.console.exe", + "tools/net46/xunit.console.exe.config", + "tools/net46/xunit.console.x86.exe", + "tools/net46/xunit.console.x86.exe.config", + "tools/net46/xunit.runner.reporters.net452.dll", + "tools/net46/xunit.runner.utility.net452.dll", + "tools/net461/xunit.abstractions.dll", + "tools/net461/xunit.console.exe", + "tools/net461/xunit.console.exe.config", + "tools/net461/xunit.console.x86.exe", + "tools/net461/xunit.console.x86.exe.config", + "tools/net461/xunit.runner.reporters.net452.dll", + "tools/net461/xunit.runner.utility.net452.dll", + "tools/net462/xunit.abstractions.dll", + "tools/net462/xunit.console.exe", + "tools/net462/xunit.console.exe.config", + "tools/net462/xunit.console.x86.exe", + "tools/net462/xunit.console.x86.exe.config", + "tools/net462/xunit.runner.reporters.net452.dll", + "tools/net462/xunit.runner.utility.net452.dll", + "tools/net47/xunit.abstractions.dll", + "tools/net47/xunit.console.exe", + "tools/net47/xunit.console.exe.config", + "tools/net47/xunit.console.x86.exe", + "tools/net47/xunit.console.x86.exe.config", + "tools/net47/xunit.runner.reporters.net452.dll", + "tools/net47/xunit.runner.utility.net452.dll", + "tools/net471/xunit.abstractions.dll", + "tools/net471/xunit.console.exe", + "tools/net471/xunit.console.exe.config", + "tools/net471/xunit.console.x86.exe", + "tools/net471/xunit.console.x86.exe.config", + "tools/net471/xunit.runner.reporters.net452.dll", + "tools/net471/xunit.runner.utility.net452.dll", + "tools/net472/xunit.abstractions.dll", + "tools/net472/xunit.console.exe", + "tools/net472/xunit.console.exe.config", + "tools/net472/xunit.console.x86.exe", + "tools/net472/xunit.console.x86.exe.config", + "tools/net472/xunit.runner.reporters.net452.dll", + "tools/net472/xunit.runner.utility.net452.dll", + "tools/netcoreapp1.0/xunit.abstractions.dll", + "tools/netcoreapp1.0/xunit.console.deps.json", + "tools/netcoreapp1.0/xunit.console.dll", + "tools/netcoreapp1.0/xunit.console.dll.config", + "tools/netcoreapp1.0/xunit.console.runtimeconfig.json", + "tools/netcoreapp1.0/xunit.runner.reporters.netcoreapp10.dll", + "tools/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll", + "tools/netcoreapp1.0/xunit.runner.utility.netcoreapp10.xml", + "tools/netcoreapp2.0/xunit.abstractions.dll", + "tools/netcoreapp2.0/xunit.console.deps.json", + "tools/netcoreapp2.0/xunit.console.dll", + "tools/netcoreapp2.0/xunit.console.dll.config", + "tools/netcoreapp2.0/xunit.console.runtimeconfig.json", + "tools/netcoreapp2.0/xunit.runner.reporters.netcoreapp10.dll", + "tools/netcoreapp2.0/xunit.runner.utility.netcoreapp10.dll", + "tools/netcoreapp2.0/xunit.runner.utility.netcoreapp10.xml", + "xunit.runner.console.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.runner.console.nuspec" + ] + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "sha512": "YyTcFxooSkYo9gr8HgLhHZ7T5PHjnCLC9dGXgbLwMCNZeqO+DzY8nWehE++FasEwMAlUv87MLhLEVXoVvMQtKQ==", + "type": "package", + "path": "xunit.runner.utility/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/xunit.runner.utility.net35.dll", + "lib/net35/xunit.runner.utility.net35.xml", + "lib/net452/xunit.runner.utility.net452.dll", + "lib/net452/xunit.runner.utility.net452.xml", + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll", + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.xml", + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll", + "lib/netstandard1.1/xunit.runner.utility.netstandard11.xml", + "lib/netstandard1.5/xunit.runner.utility.netstandard15.dll", + "lib/netstandard1.5/xunit.runner.utility.netstandard15.xml", + "lib/netstandard2.0/xunit.runner.utility.netstandard20.dll", + "lib/netstandard2.0/xunit.runner.utility.netstandard20.xml", + "lib/uap10.0/xunit.runner.utility.uwp10.dll", + "lib/uap10.0/xunit.runner.utility.uwp10.pri", + "lib/uap10.0/xunit.runner.utility.uwp10.xml", + "xunit.runner.utility.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v1.1": [ + "CommandLineParser >= 2.1.1-beta", + "Microsoft.CodeAnalysis.Compilers >= 1.1.1", + "Microsoft.Diagnostics.Tracing.TraceEvent >= 2.0.43", + "Newtonsoft.Json >= 12.0.1", + "xunit >= 2.4.1-pre.build.4059", + "xunit.performance.api >= 1.0.0-beta-build0015", + "xunit.performance.core >= 1.0.0-beta-build0015", + "xunit.performance.execution >= 1.0.0-beta-build0015", + "xunit.performance.metrics >= 1.0.0-beta-build0015", + "xunit.runner.console >= 2.4.1-pre.build.4059", + "xunit.runner.utility >= 2.4.1-pre.build.4059" + ] + }, + "packageFolders": { + "/home/z/Dev/coreclr-sec/.packages": {} + }, + "project": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/Common/external/external.depproj", + "projectName": "external", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/Common/external/external.depproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/Common/external/obj-linux-x86", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netcoreapp1.1" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netcoreapp1.1": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netcoreapp1.1": { + "dependencies": { + "CommandLineParser": { + "target": "Package", + "version": "[2.1.1-beta, )" + }, + "Microsoft.CodeAnalysis.Compilers": { + "target": "Package", + "version": "[1.1.1, )" + }, + "Microsoft.Diagnostics.Tracing.TraceEvent": { + "target": "Package", + "version": "[2.0.43, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[12.0.1, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.performance.api": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.core": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.execution": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.metrics": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.runner.console": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.runner.utility": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "win7-x64": { + "#import": [] + }, + "win7-x86": { + "#import": [] + } + } + } +}
\ No newline at end of file diff --git a/tests/src/Common/targeting_pack_ref/obj-linux-x64/project.assets.json b/tests/src/Common/targeting_pack_ref/obj-linux-x64/project.assets.json new file mode 100644 index 0000000000..53d0288ed0 --- /dev/null +++ b/tests/src/Common/targeting_pack_ref/obj-linux-x64/project.assets.json @@ -0,0 +1,100 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v1.1": { + "Microsoft.TargetingPack.Private.CoreCLR/3.0.0-rc2.19462.5": { + "type": "package", + "compile": { + "lib/netstandard1.0/System.Private.CoreLib.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Private.CoreLib.dll": {} + } + } + }, + ".NETCoreApp,Version=v1.1/linux-x64": { + "Microsoft.TargetingPack.Private.CoreCLR/3.0.0-rc2.19462.5": { + "type": "package", + "compile": { + "lib/netstandard1.0/System.Private.CoreLib.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Private.CoreLib.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.TargetingPack.Private.CoreCLR/3.0.0-rc2.19462.5": { + "sha512": "W2fCsHzP30/o8hQPDAku6aWFtoR06eBiodDW3EqXAscw6MEjgsh4LuzaI8md+bVlV3EuyhiT0oZsPMovKpfWkg==", + "type": "package", + "path": "microsoft.targetingpack.private.coreclr/3.0.0-rc2.19462.5", + "files": [ + ".nupkg.metadata", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/System.Private.CoreLib.dll", + "microsoft.targetingpack.private.coreclr.3.0.0-rc2.19462.5.nupkg.sha512", + "microsoft.targetingpack.private.coreclr.nuspec", + "version.txt" + ] + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v1.1": [ + "Microsoft.TargetingPack.Private.CoreCLR >= 3.0.0-rc2.19462.5" + ] + }, + "packageFolders": { + "/home/z/Dev/coreclr-sec/.packages": {} + }, + "project": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/Common/targeting_pack_ref/targeting_pack_ref.csproj", + "projectName": "targeting_pack_ref", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/Common/targeting_pack_ref/targeting_pack_ref.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/Common/targeting_pack_ref/obj-linux-x64", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netcoreapp1.1" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netcoreapp1.1": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netcoreapp1.1": { + "dependencies": { + "Microsoft.TargetingPack.Private.CoreCLR": { + "target": "Package", + "version": "[3.0.0-rc2.19462.5, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x64": { + "#import": [] + } + } + } +}
\ No newline at end of file diff --git a/tests/src/Common/targeting_pack_ref/obj-linux-x64/targeting_pack_ref.csproj.nuget.cache b/tests/src/Common/targeting_pack_ref/obj-linux-x64/targeting_pack_ref.csproj.nuget.cache new file mode 100644 index 0000000000..cac96e4f99 --- /dev/null +++ b/tests/src/Common/targeting_pack_ref/obj-linux-x64/targeting_pack_ref.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "pvUHNWsBfure020nSEnIY5hUUyt2LMKZoR+/j0rLR3MzGbzE2AD8MfN2dGL7kwaeydPe+2ZAs/r075S69lq7tA==", + "success": true +}
\ No newline at end of file diff --git a/tests/src/Common/targeting_pack_ref/obj-linux-x64/targeting_pack_ref.csproj.nuget.dgspec.json b/tests/src/Common/targeting_pack_ref/obj-linux-x64/targeting_pack_ref.csproj.nuget.dgspec.json new file mode 100644 index 0000000000..1ae6161497 --- /dev/null +++ b/tests/src/Common/targeting_pack_ref/obj-linux-x64/targeting_pack_ref.csproj.nuget.dgspec.json @@ -0,0 +1,57 @@ +{ + "format": 1, + "restore": { + "/home/z/Dev/coreclr-sec/tests/src/Common/targeting_pack_ref/targeting_pack_ref.csproj": {} + }, + "projects": { + "/home/z/Dev/coreclr-sec/tests/src/Common/targeting_pack_ref/targeting_pack_ref.csproj": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/Common/targeting_pack_ref/targeting_pack_ref.csproj", + "projectName": "targeting_pack_ref", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/Common/targeting_pack_ref/targeting_pack_ref.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/Common/targeting_pack_ref/obj-linux-x64", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netcoreapp1.1" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netcoreapp1.1": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netcoreapp1.1": { + "dependencies": { + "Microsoft.TargetingPack.Private.CoreCLR": { + "target": "Package", + "version": "[3.0.0-rc2.19462.5, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x64": { + "#import": [] + } + } + } + } +}
\ No newline at end of file diff --git a/tests/src/Common/targeting_pack_ref/obj-linux-x64/targeting_pack_ref.csproj.nuget.g.props b/tests/src/Common/targeting_pack_ref/obj-linux-x64/targeting_pack_ref.csproj.nuget.g.props new file mode 100644 index 0000000000..a9eafdb0ac --- /dev/null +++ b/tests/src/Common/targeting_pack_ref/obj-linux-x64/targeting_pack_ref.csproj.nuget.g.props @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> + <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> + <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> + <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageRoot> + <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageFolders> + <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.4.0</NuGetToolVersion> + </PropertyGroup> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/Common/targeting_pack_ref/obj-linux-x64/targeting_pack_ref.csproj.nuget.g.targets b/tests/src/Common/targeting_pack_ref/obj-linux-x64/targeting_pack_ref.csproj.nuget.g.targets new file mode 100644 index 0000000000..53cfaa19b1 --- /dev/null +++ b/tests/src/Common/targeting_pack_ref/obj-linux-x64/targeting_pack_ref.csproj.nuget.g.targets @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/Common/targeting_pack_ref/obj-linux-x86/project.assets.json b/tests/src/Common/targeting_pack_ref/obj-linux-x86/project.assets.json new file mode 100644 index 0000000000..01a01cfc39 --- /dev/null +++ b/tests/src/Common/targeting_pack_ref/obj-linux-x86/project.assets.json @@ -0,0 +1,100 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v1.1": { + "Microsoft.TargetingPack.Private.CoreCLR/3.0.0-rc2.19462.5": { + "type": "package", + "compile": { + "lib/netstandard1.0/System.Private.CoreLib.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Private.CoreLib.dll": {} + } + } + }, + ".NETCoreApp,Version=v1.1/linux-x86": { + "Microsoft.TargetingPack.Private.CoreCLR/3.0.0-rc2.19462.5": { + "type": "package", + "compile": { + "lib/netstandard1.0/System.Private.CoreLib.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Private.CoreLib.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.TargetingPack.Private.CoreCLR/3.0.0-rc2.19462.5": { + "sha512": "W2fCsHzP30/o8hQPDAku6aWFtoR06eBiodDW3EqXAscw6MEjgsh4LuzaI8md+bVlV3EuyhiT0oZsPMovKpfWkg==", + "type": "package", + "path": "microsoft.targetingpack.private.coreclr/3.0.0-rc2.19462.5", + "files": [ + ".nupkg.metadata", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/System.Private.CoreLib.dll", + "microsoft.targetingpack.private.coreclr.3.0.0-rc2.19462.5.nupkg.sha512", + "microsoft.targetingpack.private.coreclr.nuspec", + "version.txt" + ] + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v1.1": [ + "Microsoft.TargetingPack.Private.CoreCLR >= 3.0.0-rc2.19462.5" + ] + }, + "packageFolders": { + "/home/z/Dev/coreclr-sec/.packages": {} + }, + "project": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/Common/targeting_pack_ref/targeting_pack_ref.csproj", + "projectName": "targeting_pack_ref", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/Common/targeting_pack_ref/targeting_pack_ref.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/Common/targeting_pack_ref/obj-linux-x86", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netcoreapp1.1" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netcoreapp1.1": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netcoreapp1.1": { + "dependencies": { + "Microsoft.TargetingPack.Private.CoreCLR": { + "target": "Package", + "version": "[3.0.0-rc2.19462.5, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x86": { + "#import": [] + } + } + } +}
\ No newline at end of file diff --git a/tests/src/Common/targeting_pack_ref/obj-linux-x86/targeting_pack_ref.csproj.nuget.cache b/tests/src/Common/targeting_pack_ref/obj-linux-x86/targeting_pack_ref.csproj.nuget.cache new file mode 100644 index 0000000000..4a23bff382 --- /dev/null +++ b/tests/src/Common/targeting_pack_ref/obj-linux-x86/targeting_pack_ref.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "FSmQ8wfwvfEd6mQraLWF4pUSP9eR1eb3O8W5QbPg3ueR79PRXb6SUNnuGCqvZRBEfkyv1Ib8C7ulkFkN/I8p3w==", + "success": true +}
\ No newline at end of file diff --git a/tests/src/Common/targeting_pack_ref/obj-linux-x86/targeting_pack_ref.csproj.nuget.dgspec.json b/tests/src/Common/targeting_pack_ref/obj-linux-x86/targeting_pack_ref.csproj.nuget.dgspec.json new file mode 100644 index 0000000000..7e180bb6c2 --- /dev/null +++ b/tests/src/Common/targeting_pack_ref/obj-linux-x86/targeting_pack_ref.csproj.nuget.dgspec.json @@ -0,0 +1,57 @@ +{ + "format": 1, + "restore": { + "/home/z/Dev/coreclr-sec/tests/src/Common/targeting_pack_ref/targeting_pack_ref.csproj": {} + }, + "projects": { + "/home/z/Dev/coreclr-sec/tests/src/Common/targeting_pack_ref/targeting_pack_ref.csproj": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/Common/targeting_pack_ref/targeting_pack_ref.csproj", + "projectName": "targeting_pack_ref", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/Common/targeting_pack_ref/targeting_pack_ref.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/Common/targeting_pack_ref/obj-linux-x86", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netcoreapp1.1" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netcoreapp1.1": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netcoreapp1.1": { + "dependencies": { + "Microsoft.TargetingPack.Private.CoreCLR": { + "target": "Package", + "version": "[3.0.0-rc2.19462.5, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x86": { + "#import": [] + } + } + } + } +}
\ No newline at end of file diff --git a/tests/src/Common/targeting_pack_ref/obj-linux-x86/targeting_pack_ref.csproj.nuget.g.props b/tests/src/Common/targeting_pack_ref/obj-linux-x86/targeting_pack_ref.csproj.nuget.g.props new file mode 100644 index 0000000000..a9eafdb0ac --- /dev/null +++ b/tests/src/Common/targeting_pack_ref/obj-linux-x86/targeting_pack_ref.csproj.nuget.g.props @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> + <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> + <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> + <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageRoot> + <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageFolders> + <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.4.0</NuGetToolVersion> + </PropertyGroup> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/Common/targeting_pack_ref/obj-linux-x86/targeting_pack_ref.csproj.nuget.g.targets b/tests/src/Common/targeting_pack_ref/obj-linux-x86/targeting_pack_ref.csproj.nuget.g.targets new file mode 100644 index 0000000000..53cfaa19b1 --- /dev/null +++ b/tests/src/Common/targeting_pack_ref/obj-linux-x86/targeting_pack_ref.csproj.nuget.g.targets @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/Common/test_dependencies/obj-linux-x64/project.assets.json b/tests/src/Common/test_dependencies/obj-linux-x64/project.assets.json new file mode 100644 index 0000000000..7fc19fcd11 --- /dev/null +++ b/tests/src/Common/test_dependencies/obj-linux-x64/project.assets.json @@ -0,0 +1,5390 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v3.1": { + "Microsoft.Diagnostics.Tools.RuntimeClient/1.0.4-preview6.19326.1": { + "type": "package", + "compile": { + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.dll": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netcoreapp3.1/Microsoft.CSharp.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.dll": {}, + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.dll": {}, + "ref/netcoreapp3.1/System.AppContext.dll": {}, + "ref/netcoreapp3.1/System.Buffers.dll": {}, + "ref/netcoreapp3.1/System.Collections.Concurrent.dll": {}, + "ref/netcoreapp3.1/System.Collections.Immutable.dll": {}, + "ref/netcoreapp3.1/System.Collections.NonGeneric.dll": {}, + "ref/netcoreapp3.1/System.Collections.Specialized.dll": {}, + "ref/netcoreapp3.1/System.Collections.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Annotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Primitives.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.dll": {}, + "ref/netcoreapp3.1/System.Configuration.dll": {}, + "ref/netcoreapp3.1/System.Console.dll": {}, + "ref/netcoreapp3.1/System.Core.dll": {}, + "ref/netcoreapp3.1/System.Data.Common.dll": {}, + "ref/netcoreapp3.1/System.Data.DataSetExtensions.dll": {}, + "ref/netcoreapp3.1/System.Data.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Contracts.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Debug.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Process.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tools.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tracing.dll": {}, + "ref/netcoreapp3.1/System.Drawing.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Drawing.dll": {}, + "ref/netcoreapp3.1/System.Dynamic.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Calendars.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Globalization.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.Brotli.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Primitives.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.IsolatedStorage.dll": {}, + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.dll": {}, + "ref/netcoreapp3.1/System.IO.Pipes.dll": {}, + "ref/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/netcoreapp3.1/System.IO.dll": {}, + "ref/netcoreapp3.1/System.Linq.Expressions.dll": {}, + "ref/netcoreapp3.1/System.Linq.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Linq.Queryable.dll": {}, + "ref/netcoreapp3.1/System.Linq.dll": {}, + "ref/netcoreapp3.1/System.Memory.dll": {}, + "ref/netcoreapp3.1/System.Net.Http.dll": {}, + "ref/netcoreapp3.1/System.Net.HttpListener.dll": {}, + "ref/netcoreapp3.1/System.Net.Mail.dll": {}, + "ref/netcoreapp3.1/System.Net.NameResolution.dll": {}, + "ref/netcoreapp3.1/System.Net.NetworkInformation.dll": {}, + "ref/netcoreapp3.1/System.Net.Ping.dll": {}, + "ref/netcoreapp3.1/System.Net.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Net.Requests.dll": {}, + "ref/netcoreapp3.1/System.Net.Security.dll": {}, + "ref/netcoreapp3.1/System.Net.ServicePoint.dll": {}, + "ref/netcoreapp3.1/System.Net.Sockets.dll": {}, + "ref/netcoreapp3.1/System.Net.WebClient.dll": {}, + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.dll": {}, + "ref/netcoreapp3.1/System.Net.WebProxy.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.Client.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.dll": {}, + "ref/netcoreapp3.1/System.Net.dll": {}, + "ref/netcoreapp3.1/System.Numerics.Vectors.dll": {}, + "ref/netcoreapp3.1/System.Numerics.dll": {}, + "ref/netcoreapp3.1/System.ObjectModel.dll": {}, + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Metadata.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.dll": {}, + "ref/netcoreapp3.1/System.Resources.Reader.dll": {}, + "ref/netcoreapp3.1/System.Resources.ResourceManager.dll": {}, + "ref/netcoreapp3.1/System.Resources.Writer.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Handles.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Intrinsics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Loader.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Numerics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Security.Claims.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/netcoreapp3.1/System.Security.Principal.dll": {}, + "ref/netcoreapp3.1/System.Security.SecureString.dll": {}, + "ref/netcoreapp3.1/System.Security.dll": {}, + "ref/netcoreapp3.1/System.ServiceModel.Web.dll": {}, + "ref/netcoreapp3.1/System.ServiceProcess.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Text.Encodings.Web.dll": {}, + "ref/netcoreapp3.1/System.Text.Json.dll": {}, + "ref/netcoreapp3.1/System.Text.RegularExpressions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Channels.dll": {}, + "ref/netcoreapp3.1/System.Threading.Overlapped.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.dll": {}, + "ref/netcoreapp3.1/System.Threading.Thread.dll": {}, + "ref/netcoreapp3.1/System.Threading.ThreadPool.dll": {}, + "ref/netcoreapp3.1/System.Threading.Timer.dll": {}, + "ref/netcoreapp3.1/System.Threading.dll": {}, + "ref/netcoreapp3.1/System.Transactions.Local.dll": {}, + "ref/netcoreapp3.1/System.Transactions.dll": {}, + "ref/netcoreapp3.1/System.ValueTuple.dll": {}, + "ref/netcoreapp3.1/System.Web.HttpUtility.dll": {}, + "ref/netcoreapp3.1/System.Web.dll": {}, + "ref/netcoreapp3.1/System.Windows.dll": {}, + "ref/netcoreapp3.1/System.Xml.Linq.dll": {}, + "ref/netcoreapp3.1/System.Xml.ReaderWriter.dll": {}, + "ref/netcoreapp3.1/System.Xml.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Xml.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlSerializer.dll": {}, + "ref/netcoreapp3.1/System.Xml.dll": {}, + "ref/netcoreapp3.1/System.dll": {}, + "ref/netcoreapp3.1/WindowsBase.dll": {}, + "ref/netcoreapp3.1/mscorlib.dll": {}, + "ref/netcoreapp3.1/netstandard.dll": {} + } + }, + "Microsoft.Win32.Registry/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.EventLog/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "Microsoft.Win32.Registry": "4.7.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/System.Diagnostics.EventLog.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "Microsoft.Win32.SystemEvents": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Drawing.Common.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + }, + "System.Runtime.Intrinsics.Experimental/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.AccessControl/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview3.19551.4", + "System.Windows.Extensions": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Windows.Extensions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + } + }, + ".NETCoreApp,Version=v3.1/linux-x64": { + "Microsoft.Diagnostics.Tools.RuntimeClient/1.0.4-preview6.19326.1": { + "type": "package", + "compile": { + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.dll": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "runtime.linux-x64.Microsoft.Private.CoreFx.NETCoreApp": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.1/Microsoft.CSharp.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.dll": {}, + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.dll": {}, + "ref/netcoreapp3.1/System.AppContext.dll": {}, + "ref/netcoreapp3.1/System.Buffers.dll": {}, + "ref/netcoreapp3.1/System.Collections.Concurrent.dll": {}, + "ref/netcoreapp3.1/System.Collections.Immutable.dll": {}, + "ref/netcoreapp3.1/System.Collections.NonGeneric.dll": {}, + "ref/netcoreapp3.1/System.Collections.Specialized.dll": {}, + "ref/netcoreapp3.1/System.Collections.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Annotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Primitives.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.dll": {}, + "ref/netcoreapp3.1/System.Configuration.dll": {}, + "ref/netcoreapp3.1/System.Console.dll": {}, + "ref/netcoreapp3.1/System.Core.dll": {}, + "ref/netcoreapp3.1/System.Data.Common.dll": {}, + "ref/netcoreapp3.1/System.Data.DataSetExtensions.dll": {}, + "ref/netcoreapp3.1/System.Data.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Contracts.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Debug.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Process.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tools.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tracing.dll": {}, + "ref/netcoreapp3.1/System.Drawing.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Drawing.dll": {}, + "ref/netcoreapp3.1/System.Dynamic.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Calendars.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Globalization.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.Brotli.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Primitives.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.IsolatedStorage.dll": {}, + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.dll": {}, + "ref/netcoreapp3.1/System.IO.Pipes.dll": {}, + "ref/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/netcoreapp3.1/System.IO.dll": {}, + "ref/netcoreapp3.1/System.Linq.Expressions.dll": {}, + "ref/netcoreapp3.1/System.Linq.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Linq.Queryable.dll": {}, + "ref/netcoreapp3.1/System.Linq.dll": {}, + "ref/netcoreapp3.1/System.Memory.dll": {}, + "ref/netcoreapp3.1/System.Net.Http.dll": {}, + "ref/netcoreapp3.1/System.Net.HttpListener.dll": {}, + "ref/netcoreapp3.1/System.Net.Mail.dll": {}, + "ref/netcoreapp3.1/System.Net.NameResolution.dll": {}, + "ref/netcoreapp3.1/System.Net.NetworkInformation.dll": {}, + "ref/netcoreapp3.1/System.Net.Ping.dll": {}, + "ref/netcoreapp3.1/System.Net.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Net.Requests.dll": {}, + "ref/netcoreapp3.1/System.Net.Security.dll": {}, + "ref/netcoreapp3.1/System.Net.ServicePoint.dll": {}, + "ref/netcoreapp3.1/System.Net.Sockets.dll": {}, + "ref/netcoreapp3.1/System.Net.WebClient.dll": {}, + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.dll": {}, + "ref/netcoreapp3.1/System.Net.WebProxy.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.Client.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.dll": {}, + "ref/netcoreapp3.1/System.Net.dll": {}, + "ref/netcoreapp3.1/System.Numerics.Vectors.dll": {}, + "ref/netcoreapp3.1/System.Numerics.dll": {}, + "ref/netcoreapp3.1/System.ObjectModel.dll": {}, + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Metadata.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.dll": {}, + "ref/netcoreapp3.1/System.Resources.Reader.dll": {}, + "ref/netcoreapp3.1/System.Resources.ResourceManager.dll": {}, + "ref/netcoreapp3.1/System.Resources.Writer.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Handles.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Intrinsics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Loader.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Numerics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Security.Claims.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/netcoreapp3.1/System.Security.Principal.dll": {}, + "ref/netcoreapp3.1/System.Security.SecureString.dll": {}, + "ref/netcoreapp3.1/System.Security.dll": {}, + "ref/netcoreapp3.1/System.ServiceModel.Web.dll": {}, + "ref/netcoreapp3.1/System.ServiceProcess.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Text.Encodings.Web.dll": {}, + "ref/netcoreapp3.1/System.Text.Json.dll": {}, + "ref/netcoreapp3.1/System.Text.RegularExpressions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Channels.dll": {}, + "ref/netcoreapp3.1/System.Threading.Overlapped.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.dll": {}, + "ref/netcoreapp3.1/System.Threading.Thread.dll": {}, + "ref/netcoreapp3.1/System.Threading.ThreadPool.dll": {}, + "ref/netcoreapp3.1/System.Threading.Timer.dll": {}, + "ref/netcoreapp3.1/System.Threading.dll": {}, + "ref/netcoreapp3.1/System.Transactions.Local.dll": {}, + "ref/netcoreapp3.1/System.Transactions.dll": {}, + "ref/netcoreapp3.1/System.ValueTuple.dll": {}, + "ref/netcoreapp3.1/System.Web.HttpUtility.dll": {}, + "ref/netcoreapp3.1/System.Web.dll": {}, + "ref/netcoreapp3.1/System.Windows.dll": {}, + "ref/netcoreapp3.1/System.Xml.Linq.dll": {}, + "ref/netcoreapp3.1/System.Xml.ReaderWriter.dll": {}, + "ref/netcoreapp3.1/System.Xml.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Xml.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlSerializer.dll": {}, + "ref/netcoreapp3.1/System.Xml.dll": {}, + "ref/netcoreapp3.1/System.dll": {}, + "ref/netcoreapp3.1/WindowsBase.dll": {}, + "ref/netcoreapp3.1/mscorlib.dll": {}, + "ref/netcoreapp3.1/netstandard.dll": {} + } + }, + "Microsoft.Win32.Registry/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + } + }, + "Microsoft.Win32.SystemEvents/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} + } + }, + "runtime.linux-x64.Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.CSharp.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.Win32.Primitives.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.Win32.Registry.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.AppContext.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Buffers.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.Concurrent.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.Immutable.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.NonGeneric.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.Specialized.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.Annotations.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.Primitives.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Configuration.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Console.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Core.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Data.Common.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Data.DataSetExtensions.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Data.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Contracts.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Debug.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Process.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.StackTrace.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Tools.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.TraceSource.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Tracing.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Drawing.Primitives.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Drawing.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Dynamic.Runtime.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Globalization.Calendars.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Globalization.Extensions.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Globalization.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Compression.Brotli.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Compression.FileSystem.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Compression.ZipFile.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Compression.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.IsolatedStorage.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Pipes.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Linq.Expressions.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Linq.Parallel.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Linq.Queryable.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Linq.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Memory.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Http.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.HttpListener.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Mail.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.NameResolution.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.NetworkInformation.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Ping.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Primitives.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Requests.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Security.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.ServicePoint.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Sockets.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebClient.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebHeaderCollection.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebProxy.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebSockets.Client.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebSockets.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Numerics.Vectors.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Numerics.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.ObjectModel.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Private.DataContractSerialization.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Private.Uri.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Private.Xml.Linq.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Private.Xml.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.DispatchProxy.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Emit.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Extensions.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Metadata.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Primitives.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.TypeExtensions.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Resources.Reader.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Resources.ResourceManager.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Resources.Writer.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Extensions.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Handles.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Intrinsics.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Loader.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Numerics.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Json.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.AccessControl.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Claims.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Cng.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Csp.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Principal.Windows.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Principal.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.SecureString.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.ServiceModel.Web.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.ServiceProcess.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Encoding.Extensions.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Encoding.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Encodings.Web.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Json.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.RegularExpressions.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Channels.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Overlapped.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Tasks.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Thread.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.ThreadPool.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Timer.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Transactions.Local.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Transactions.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.ValueTuple.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Web.HttpUtility.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Web.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Windows.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.Linq.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.ReaderWriter.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.Serialization.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XDocument.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XPath.XDocument.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XPath.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XmlDocument.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XmlSerializer.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/WindowsBase.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/mscorlib.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/netstandard.dll": {} + }, + "native": { + "runtimes/linux-x64/native/System.IO.Compression.Native.a": {}, + "runtimes/linux-x64/native/System.IO.Compression.Native.so": {}, + "runtimes/linux-x64/native/System.IO.Compression.Native.so.dbg": {}, + "runtimes/linux-x64/native/System.Native.a": {}, + "runtimes/linux-x64/native/System.Native.so": {}, + "runtimes/linux-x64/native/System.Native.so.dbg": {}, + "runtimes/linux-x64/native/System.Net.Http.Native.a": {}, + "runtimes/linux-x64/native/System.Net.Http.Native.so": {}, + "runtimes/linux-x64/native/System.Net.Http.Native.so.dbg": {}, + "runtimes/linux-x64/native/System.Net.Security.Native.a": {}, + "runtimes/linux-x64/native/System.Net.Security.Native.so": {}, + "runtimes/linux-x64/native/System.Net.Security.Native.so.dbg": {}, + "runtimes/linux-x64/native/System.Security.Cryptography.Native.OpenSsl.a": {}, + "runtimes/linux-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {}, + "runtimes/linux-x64/native/System.Security.Cryptography.Native.OpenSsl.so.dbg": {} + } + }, + "System.Diagnostics.EventLog/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "Microsoft.Win32.Registry": "4.7.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/System.Diagnostics.EventLog.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {} + } + }, + "System.Drawing.Common/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "Microsoft.Win32.SystemEvents": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Drawing.Common.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + }, + "System.Runtime.Intrinsics.Experimental/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll": {} + } + }, + "System.Security.AccessControl/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + } + }, + "System.Security.Permissions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview3.19551.4", + "System.Windows.Extensions": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {} + } + }, + "System.Windows.Extensions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": {} + } + } + }, + ".NETCoreApp,Version=v3.1/win-arm": { + "Microsoft.Diagnostics.Tools.RuntimeClient/1.0.4-preview6.19326.1": { + "type": "package", + "compile": { + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.dll": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "runtime.win-arm.Microsoft.Private.CoreFx.NETCoreApp": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.1/Microsoft.CSharp.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.dll": {}, + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.dll": {}, + "ref/netcoreapp3.1/System.AppContext.dll": {}, + "ref/netcoreapp3.1/System.Buffers.dll": {}, + "ref/netcoreapp3.1/System.Collections.Concurrent.dll": {}, + "ref/netcoreapp3.1/System.Collections.Immutable.dll": {}, + "ref/netcoreapp3.1/System.Collections.NonGeneric.dll": {}, + "ref/netcoreapp3.1/System.Collections.Specialized.dll": {}, + "ref/netcoreapp3.1/System.Collections.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Annotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Primitives.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.dll": {}, + "ref/netcoreapp3.1/System.Configuration.dll": {}, + "ref/netcoreapp3.1/System.Console.dll": {}, + "ref/netcoreapp3.1/System.Core.dll": {}, + "ref/netcoreapp3.1/System.Data.Common.dll": {}, + "ref/netcoreapp3.1/System.Data.DataSetExtensions.dll": {}, + "ref/netcoreapp3.1/System.Data.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Contracts.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Debug.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Process.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tools.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tracing.dll": {}, + "ref/netcoreapp3.1/System.Drawing.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Drawing.dll": {}, + "ref/netcoreapp3.1/System.Dynamic.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Calendars.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Globalization.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.Brotli.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Primitives.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.IsolatedStorage.dll": {}, + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.dll": {}, + "ref/netcoreapp3.1/System.IO.Pipes.dll": {}, + "ref/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/netcoreapp3.1/System.IO.dll": {}, + "ref/netcoreapp3.1/System.Linq.Expressions.dll": {}, + "ref/netcoreapp3.1/System.Linq.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Linq.Queryable.dll": {}, + "ref/netcoreapp3.1/System.Linq.dll": {}, + "ref/netcoreapp3.1/System.Memory.dll": {}, + "ref/netcoreapp3.1/System.Net.Http.dll": {}, + "ref/netcoreapp3.1/System.Net.HttpListener.dll": {}, + "ref/netcoreapp3.1/System.Net.Mail.dll": {}, + "ref/netcoreapp3.1/System.Net.NameResolution.dll": {}, + "ref/netcoreapp3.1/System.Net.NetworkInformation.dll": {}, + "ref/netcoreapp3.1/System.Net.Ping.dll": {}, + "ref/netcoreapp3.1/System.Net.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Net.Requests.dll": {}, + "ref/netcoreapp3.1/System.Net.Security.dll": {}, + "ref/netcoreapp3.1/System.Net.ServicePoint.dll": {}, + "ref/netcoreapp3.1/System.Net.Sockets.dll": {}, + "ref/netcoreapp3.1/System.Net.WebClient.dll": {}, + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.dll": {}, + "ref/netcoreapp3.1/System.Net.WebProxy.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.Client.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.dll": {}, + "ref/netcoreapp3.1/System.Net.dll": {}, + "ref/netcoreapp3.1/System.Numerics.Vectors.dll": {}, + "ref/netcoreapp3.1/System.Numerics.dll": {}, + "ref/netcoreapp3.1/System.ObjectModel.dll": {}, + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Metadata.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.dll": {}, + "ref/netcoreapp3.1/System.Resources.Reader.dll": {}, + "ref/netcoreapp3.1/System.Resources.ResourceManager.dll": {}, + "ref/netcoreapp3.1/System.Resources.Writer.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Handles.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Intrinsics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Loader.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Numerics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Security.Claims.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/netcoreapp3.1/System.Security.Principal.dll": {}, + "ref/netcoreapp3.1/System.Security.SecureString.dll": {}, + "ref/netcoreapp3.1/System.Security.dll": {}, + "ref/netcoreapp3.1/System.ServiceModel.Web.dll": {}, + "ref/netcoreapp3.1/System.ServiceProcess.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Text.Encodings.Web.dll": {}, + "ref/netcoreapp3.1/System.Text.Json.dll": {}, + "ref/netcoreapp3.1/System.Text.RegularExpressions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Channels.dll": {}, + "ref/netcoreapp3.1/System.Threading.Overlapped.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.dll": {}, + "ref/netcoreapp3.1/System.Threading.Thread.dll": {}, + "ref/netcoreapp3.1/System.Threading.ThreadPool.dll": {}, + "ref/netcoreapp3.1/System.Threading.Timer.dll": {}, + "ref/netcoreapp3.1/System.Threading.dll": {}, + "ref/netcoreapp3.1/System.Transactions.Local.dll": {}, + "ref/netcoreapp3.1/System.Transactions.dll": {}, + "ref/netcoreapp3.1/System.ValueTuple.dll": {}, + "ref/netcoreapp3.1/System.Web.HttpUtility.dll": {}, + "ref/netcoreapp3.1/System.Web.dll": {}, + "ref/netcoreapp3.1/System.Windows.dll": {}, + "ref/netcoreapp3.1/System.Xml.Linq.dll": {}, + "ref/netcoreapp3.1/System.Xml.ReaderWriter.dll": {}, + "ref/netcoreapp3.1/System.Xml.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Xml.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlSerializer.dll": {}, + "ref/netcoreapp3.1/System.Xml.dll": {}, + "ref/netcoreapp3.1/System.dll": {}, + "ref/netcoreapp3.1/WindowsBase.dll": {}, + "ref/netcoreapp3.1/mscorlib.dll": {}, + "ref/netcoreapp3.1/netstandard.dll": {} + } + }, + "Microsoft.Win32.Registry/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + } + }, + "Microsoft.Win32.SystemEvents/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {} + } + }, + "runtime.win-arm.Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.CSharp.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.VisualBasic.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.Win32.Primitives.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.Win32.Registry.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.AppContext.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Buffers.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.Concurrent.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.Immutable.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.NonGeneric.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.Specialized.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.Annotations.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.Primitives.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Configuration.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Console.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Core.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Data.Common.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Data.DataSetExtensions.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Data.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Contracts.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Debug.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Process.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.StackTrace.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Tools.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.TraceSource.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Tracing.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Drawing.Primitives.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Drawing.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Dynamic.Runtime.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Globalization.Calendars.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Globalization.Extensions.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Globalization.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Compression.Brotli.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Compression.FileSystem.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Compression.ZipFile.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Compression.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.IsolatedStorage.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Pipes.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Linq.Expressions.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Linq.Parallel.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Linq.Queryable.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Linq.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Memory.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Http.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.HttpListener.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Mail.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.NameResolution.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.NetworkInformation.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Ping.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Primitives.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Requests.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Security.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.ServicePoint.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Sockets.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebClient.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebHeaderCollection.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebProxy.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebSockets.Client.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebSockets.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Numerics.Vectors.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Numerics.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.ObjectModel.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Private.DataContractSerialization.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Private.Uri.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Private.Xml.Linq.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Private.Xml.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.DispatchProxy.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Emit.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Extensions.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Metadata.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Primitives.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.TypeExtensions.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Resources.Reader.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Resources.ResourceManager.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Resources.Writer.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Extensions.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Handles.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.InteropServices.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Intrinsics.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Loader.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Numerics.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.Json.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.AccessControl.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Claims.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Cng.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Csp.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Principal.Windows.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Principal.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.SecureString.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.ServiceModel.Web.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.ServiceProcess.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Encoding.Extensions.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Encoding.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Encodings.Web.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Json.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.RegularExpressions.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Channels.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Overlapped.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Tasks.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Thread.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.ThreadPool.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Timer.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Transactions.Local.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Transactions.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.ValueTuple.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Web.HttpUtility.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Web.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Windows.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.Linq.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.ReaderWriter.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.Serialization.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XDocument.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XPath.XDocument.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XPath.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XmlDocument.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XmlSerializer.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/WindowsBase.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/mscorlib.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/netstandard.dll": {} + }, + "native": { + "runtimes/win-arm/native/clrcompression.dll": {}, + "runtimes/win-arm/native/clrcompression.pdb": {} + } + }, + "System.Diagnostics.EventLog/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "Microsoft.Win32.Registry": "4.7.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/System.Diagnostics.EventLog.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {} + } + }, + "System.Drawing.Common/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "Microsoft.Win32.SystemEvents": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Drawing.Common.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + }, + "System.Runtime.Intrinsics.Experimental/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll": {} + } + }, + "System.Security.AccessControl/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {} + } + }, + "System.Security.Permissions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview3.19551.4", + "System.Windows.Extensions": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {} + } + }, + "System.Windows.Extensions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {} + } + } + }, + ".NETCoreApp,Version=v3.1/win-arm64": { + "Microsoft.Diagnostics.Tools.RuntimeClient/1.0.4-preview6.19326.1": { + "type": "package", + "compile": { + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.dll": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "runtime.win-arm64.Microsoft.Private.CoreFx.NETCoreApp": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.1/Microsoft.CSharp.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.dll": {}, + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.dll": {}, + "ref/netcoreapp3.1/System.AppContext.dll": {}, + "ref/netcoreapp3.1/System.Buffers.dll": {}, + "ref/netcoreapp3.1/System.Collections.Concurrent.dll": {}, + "ref/netcoreapp3.1/System.Collections.Immutable.dll": {}, + "ref/netcoreapp3.1/System.Collections.NonGeneric.dll": {}, + "ref/netcoreapp3.1/System.Collections.Specialized.dll": {}, + "ref/netcoreapp3.1/System.Collections.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Annotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Primitives.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.dll": {}, + "ref/netcoreapp3.1/System.Configuration.dll": {}, + "ref/netcoreapp3.1/System.Console.dll": {}, + "ref/netcoreapp3.1/System.Core.dll": {}, + "ref/netcoreapp3.1/System.Data.Common.dll": {}, + "ref/netcoreapp3.1/System.Data.DataSetExtensions.dll": {}, + "ref/netcoreapp3.1/System.Data.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Contracts.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Debug.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Process.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tools.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tracing.dll": {}, + "ref/netcoreapp3.1/System.Drawing.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Drawing.dll": {}, + "ref/netcoreapp3.1/System.Dynamic.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Calendars.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Globalization.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.Brotli.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Primitives.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.IsolatedStorage.dll": {}, + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.dll": {}, + "ref/netcoreapp3.1/System.IO.Pipes.dll": {}, + "ref/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/netcoreapp3.1/System.IO.dll": {}, + "ref/netcoreapp3.1/System.Linq.Expressions.dll": {}, + "ref/netcoreapp3.1/System.Linq.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Linq.Queryable.dll": {}, + "ref/netcoreapp3.1/System.Linq.dll": {}, + "ref/netcoreapp3.1/System.Memory.dll": {}, + "ref/netcoreapp3.1/System.Net.Http.dll": {}, + "ref/netcoreapp3.1/System.Net.HttpListener.dll": {}, + "ref/netcoreapp3.1/System.Net.Mail.dll": {}, + "ref/netcoreapp3.1/System.Net.NameResolution.dll": {}, + "ref/netcoreapp3.1/System.Net.NetworkInformation.dll": {}, + "ref/netcoreapp3.1/System.Net.Ping.dll": {}, + "ref/netcoreapp3.1/System.Net.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Net.Requests.dll": {}, + "ref/netcoreapp3.1/System.Net.Security.dll": {}, + "ref/netcoreapp3.1/System.Net.ServicePoint.dll": {}, + "ref/netcoreapp3.1/System.Net.Sockets.dll": {}, + "ref/netcoreapp3.1/System.Net.WebClient.dll": {}, + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.dll": {}, + "ref/netcoreapp3.1/System.Net.WebProxy.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.Client.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.dll": {}, + "ref/netcoreapp3.1/System.Net.dll": {}, + "ref/netcoreapp3.1/System.Numerics.Vectors.dll": {}, + "ref/netcoreapp3.1/System.Numerics.dll": {}, + "ref/netcoreapp3.1/System.ObjectModel.dll": {}, + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Metadata.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.dll": {}, + "ref/netcoreapp3.1/System.Resources.Reader.dll": {}, + "ref/netcoreapp3.1/System.Resources.ResourceManager.dll": {}, + "ref/netcoreapp3.1/System.Resources.Writer.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Handles.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Intrinsics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Loader.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Numerics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Security.Claims.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/netcoreapp3.1/System.Security.Principal.dll": {}, + "ref/netcoreapp3.1/System.Security.SecureString.dll": {}, + "ref/netcoreapp3.1/System.Security.dll": {}, + "ref/netcoreapp3.1/System.ServiceModel.Web.dll": {}, + "ref/netcoreapp3.1/System.ServiceProcess.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Text.Encodings.Web.dll": {}, + "ref/netcoreapp3.1/System.Text.Json.dll": {}, + "ref/netcoreapp3.1/System.Text.RegularExpressions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Channels.dll": {}, + "ref/netcoreapp3.1/System.Threading.Overlapped.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.dll": {}, + "ref/netcoreapp3.1/System.Threading.Thread.dll": {}, + "ref/netcoreapp3.1/System.Threading.ThreadPool.dll": {}, + "ref/netcoreapp3.1/System.Threading.Timer.dll": {}, + "ref/netcoreapp3.1/System.Threading.dll": {}, + "ref/netcoreapp3.1/System.Transactions.Local.dll": {}, + "ref/netcoreapp3.1/System.Transactions.dll": {}, + "ref/netcoreapp3.1/System.ValueTuple.dll": {}, + "ref/netcoreapp3.1/System.Web.HttpUtility.dll": {}, + "ref/netcoreapp3.1/System.Web.dll": {}, + "ref/netcoreapp3.1/System.Windows.dll": {}, + "ref/netcoreapp3.1/System.Xml.Linq.dll": {}, + "ref/netcoreapp3.1/System.Xml.ReaderWriter.dll": {}, + "ref/netcoreapp3.1/System.Xml.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Xml.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlSerializer.dll": {}, + "ref/netcoreapp3.1/System.Xml.dll": {}, + "ref/netcoreapp3.1/System.dll": {}, + "ref/netcoreapp3.1/WindowsBase.dll": {}, + "ref/netcoreapp3.1/mscorlib.dll": {}, + "ref/netcoreapp3.1/netstandard.dll": {} + } + }, + "Microsoft.Win32.Registry/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + } + }, + "Microsoft.Win32.SystemEvents/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {} + } + }, + "runtime.win-arm64.Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.CSharp.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.VisualBasic.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.Win32.Primitives.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.Win32.Registry.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.AppContext.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Buffers.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.Concurrent.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.Immutable.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.NonGeneric.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.Specialized.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.Annotations.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.Primitives.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Configuration.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Console.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Core.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Data.Common.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Data.DataSetExtensions.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Data.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Contracts.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Debug.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Process.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.StackTrace.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Tools.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.TraceSource.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Tracing.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Drawing.Primitives.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Drawing.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Dynamic.Runtime.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Globalization.Calendars.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Globalization.Extensions.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Globalization.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Compression.Brotli.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Compression.FileSystem.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Compression.ZipFile.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Compression.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.IsolatedStorage.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Pipes.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Linq.Expressions.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Linq.Parallel.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Linq.Queryable.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Linq.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Memory.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Http.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.HttpListener.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Mail.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.NameResolution.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.NetworkInformation.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Ping.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Primitives.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Requests.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Security.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.ServicePoint.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Sockets.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebClient.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebHeaderCollection.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebProxy.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebSockets.Client.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebSockets.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Numerics.Vectors.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Numerics.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.ObjectModel.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Private.DataContractSerialization.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Private.Uri.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Private.Xml.Linq.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Private.Xml.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.DispatchProxy.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Emit.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Extensions.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Metadata.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Primitives.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.TypeExtensions.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Resources.Reader.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Resources.ResourceManager.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Resources.Writer.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Extensions.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Handles.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.InteropServices.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Intrinsics.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Loader.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Numerics.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.Json.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.AccessControl.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Claims.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Cng.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Csp.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Principal.Windows.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Principal.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.SecureString.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.ServiceModel.Web.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.ServiceProcess.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Encoding.Extensions.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Encoding.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Encodings.Web.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Json.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.RegularExpressions.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Channels.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Overlapped.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Tasks.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Thread.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.ThreadPool.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Timer.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Transactions.Local.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Transactions.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.ValueTuple.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Web.HttpUtility.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Web.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Windows.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.Linq.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.ReaderWriter.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.Serialization.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XDocument.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XPath.XDocument.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XPath.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XmlDocument.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XmlSerializer.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/WindowsBase.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/mscorlib.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/netstandard.dll": {} + }, + "native": { + "runtimes/win-arm64/native/clrcompression.dll": {}, + "runtimes/win-arm64/native/clrcompression.pdb": {} + } + }, + "System.Diagnostics.EventLog/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "Microsoft.Win32.Registry": "4.7.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/System.Diagnostics.EventLog.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {} + } + }, + "System.Drawing.Common/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "Microsoft.Win32.SystemEvents": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Drawing.Common.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + }, + "System.Runtime.Intrinsics.Experimental/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll": {} + } + }, + "System.Security.AccessControl/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {} + } + }, + "System.Security.Permissions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview3.19551.4", + "System.Windows.Extensions": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {} + } + }, + "System.Windows.Extensions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {} + } + } + }, + ".NETCoreApp,Version=v3.1/win-x64": { + "Microsoft.Diagnostics.Tools.RuntimeClient/1.0.4-preview6.19326.1": { + "type": "package", + "compile": { + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.dll": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "runtime.win-x64.Microsoft.Private.CoreFx.NETCoreApp": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.1/Microsoft.CSharp.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.dll": {}, + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.dll": {}, + "ref/netcoreapp3.1/System.AppContext.dll": {}, + "ref/netcoreapp3.1/System.Buffers.dll": {}, + "ref/netcoreapp3.1/System.Collections.Concurrent.dll": {}, + "ref/netcoreapp3.1/System.Collections.Immutable.dll": {}, + "ref/netcoreapp3.1/System.Collections.NonGeneric.dll": {}, + "ref/netcoreapp3.1/System.Collections.Specialized.dll": {}, + "ref/netcoreapp3.1/System.Collections.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Annotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Primitives.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.dll": {}, + "ref/netcoreapp3.1/System.Configuration.dll": {}, + "ref/netcoreapp3.1/System.Console.dll": {}, + "ref/netcoreapp3.1/System.Core.dll": {}, + "ref/netcoreapp3.1/System.Data.Common.dll": {}, + "ref/netcoreapp3.1/System.Data.DataSetExtensions.dll": {}, + "ref/netcoreapp3.1/System.Data.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Contracts.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Debug.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Process.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tools.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tracing.dll": {}, + "ref/netcoreapp3.1/System.Drawing.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Drawing.dll": {}, + "ref/netcoreapp3.1/System.Dynamic.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Calendars.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Globalization.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.Brotli.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Primitives.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.IsolatedStorage.dll": {}, + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.dll": {}, + "ref/netcoreapp3.1/System.IO.Pipes.dll": {}, + "ref/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/netcoreapp3.1/System.IO.dll": {}, + "ref/netcoreapp3.1/System.Linq.Expressions.dll": {}, + "ref/netcoreapp3.1/System.Linq.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Linq.Queryable.dll": {}, + "ref/netcoreapp3.1/System.Linq.dll": {}, + "ref/netcoreapp3.1/System.Memory.dll": {}, + "ref/netcoreapp3.1/System.Net.Http.dll": {}, + "ref/netcoreapp3.1/System.Net.HttpListener.dll": {}, + "ref/netcoreapp3.1/System.Net.Mail.dll": {}, + "ref/netcoreapp3.1/System.Net.NameResolution.dll": {}, + "ref/netcoreapp3.1/System.Net.NetworkInformation.dll": {}, + "ref/netcoreapp3.1/System.Net.Ping.dll": {}, + "ref/netcoreapp3.1/System.Net.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Net.Requests.dll": {}, + "ref/netcoreapp3.1/System.Net.Security.dll": {}, + "ref/netcoreapp3.1/System.Net.ServicePoint.dll": {}, + "ref/netcoreapp3.1/System.Net.Sockets.dll": {}, + "ref/netcoreapp3.1/System.Net.WebClient.dll": {}, + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.dll": {}, + "ref/netcoreapp3.1/System.Net.WebProxy.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.Client.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.dll": {}, + "ref/netcoreapp3.1/System.Net.dll": {}, + "ref/netcoreapp3.1/System.Numerics.Vectors.dll": {}, + "ref/netcoreapp3.1/System.Numerics.dll": {}, + "ref/netcoreapp3.1/System.ObjectModel.dll": {}, + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Metadata.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.dll": {}, + "ref/netcoreapp3.1/System.Resources.Reader.dll": {}, + "ref/netcoreapp3.1/System.Resources.ResourceManager.dll": {}, + "ref/netcoreapp3.1/System.Resources.Writer.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Handles.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Intrinsics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Loader.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Numerics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Security.Claims.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/netcoreapp3.1/System.Security.Principal.dll": {}, + "ref/netcoreapp3.1/System.Security.SecureString.dll": {}, + "ref/netcoreapp3.1/System.Security.dll": {}, + "ref/netcoreapp3.1/System.ServiceModel.Web.dll": {}, + "ref/netcoreapp3.1/System.ServiceProcess.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Text.Encodings.Web.dll": {}, + "ref/netcoreapp3.1/System.Text.Json.dll": {}, + "ref/netcoreapp3.1/System.Text.RegularExpressions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Channels.dll": {}, + "ref/netcoreapp3.1/System.Threading.Overlapped.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.dll": {}, + "ref/netcoreapp3.1/System.Threading.Thread.dll": {}, + "ref/netcoreapp3.1/System.Threading.ThreadPool.dll": {}, + "ref/netcoreapp3.1/System.Threading.Timer.dll": {}, + "ref/netcoreapp3.1/System.Threading.dll": {}, + "ref/netcoreapp3.1/System.Transactions.Local.dll": {}, + "ref/netcoreapp3.1/System.Transactions.dll": {}, + "ref/netcoreapp3.1/System.ValueTuple.dll": {}, + "ref/netcoreapp3.1/System.Web.HttpUtility.dll": {}, + "ref/netcoreapp3.1/System.Web.dll": {}, + "ref/netcoreapp3.1/System.Windows.dll": {}, + "ref/netcoreapp3.1/System.Xml.Linq.dll": {}, + "ref/netcoreapp3.1/System.Xml.ReaderWriter.dll": {}, + "ref/netcoreapp3.1/System.Xml.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Xml.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlSerializer.dll": {}, + "ref/netcoreapp3.1/System.Xml.dll": {}, + "ref/netcoreapp3.1/System.dll": {}, + "ref/netcoreapp3.1/WindowsBase.dll": {}, + "ref/netcoreapp3.1/mscorlib.dll": {}, + "ref/netcoreapp3.1/netstandard.dll": {} + } + }, + "Microsoft.Win32.Registry/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + } + }, + "Microsoft.Win32.SystemEvents/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {} + } + }, + "runtime.win-x64.Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.CSharp.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.Win32.Primitives.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.Win32.Registry.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.AppContext.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Buffers.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.Concurrent.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.Immutable.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.NonGeneric.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.Specialized.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.Annotations.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.Primitives.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Configuration.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Console.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Core.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Data.Common.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Data.DataSetExtensions.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Data.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Contracts.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Debug.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Process.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.StackTrace.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Tools.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.TraceSource.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Tracing.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Drawing.Primitives.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Drawing.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Dynamic.Runtime.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Globalization.Calendars.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Globalization.Extensions.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Globalization.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Compression.Brotli.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Compression.FileSystem.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Compression.ZipFile.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Compression.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.IsolatedStorage.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Pipes.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Linq.Expressions.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Linq.Parallel.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Linq.Queryable.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Linq.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Memory.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Http.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.HttpListener.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Mail.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.NameResolution.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.NetworkInformation.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Ping.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Primitives.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Requests.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Security.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.ServicePoint.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Sockets.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebClient.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebHeaderCollection.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebProxy.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebSockets.Client.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebSockets.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Numerics.Vectors.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Numerics.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.ObjectModel.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Private.DataContractSerialization.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Private.Uri.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Private.Xml.Linq.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Private.Xml.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.DispatchProxy.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Emit.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Extensions.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Metadata.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Primitives.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.TypeExtensions.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Resources.Reader.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Resources.ResourceManager.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Resources.Writer.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Extensions.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Handles.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Intrinsics.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Loader.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Numerics.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Json.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.AccessControl.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Claims.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Cng.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Csp.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Principal.Windows.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Principal.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.SecureString.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.ServiceModel.Web.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.ServiceProcess.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Encoding.Extensions.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Encoding.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Encodings.Web.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Json.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.RegularExpressions.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Channels.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Overlapped.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Tasks.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Thread.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.ThreadPool.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Timer.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Transactions.Local.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Transactions.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.ValueTuple.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Web.HttpUtility.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Web.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Windows.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.Linq.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.ReaderWriter.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.Serialization.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XDocument.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XPath.XDocument.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XPath.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XmlDocument.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XmlSerializer.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/WindowsBase.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/mscorlib.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/netstandard.dll": {} + }, + "native": { + "runtimes/win-x64/native/clrcompression.dll": {}, + "runtimes/win-x64/native/clrcompression.pdb": {} + } + }, + "System.Diagnostics.EventLog/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "Microsoft.Win32.Registry": "4.7.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/System.Diagnostics.EventLog.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {} + } + }, + "System.Drawing.Common/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "Microsoft.Win32.SystemEvents": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Drawing.Common.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + }, + "System.Runtime.Intrinsics.Experimental/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll": {} + } + }, + "System.Security.AccessControl/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {} + } + }, + "System.Security.Permissions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview3.19551.4", + "System.Windows.Extensions": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {} + } + }, + "System.Windows.Extensions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {} + } + } + }, + ".NETCoreApp,Version=v3.1/win-x86": { + "Microsoft.Diagnostics.Tools.RuntimeClient/1.0.4-preview6.19326.1": { + "type": "package", + "compile": { + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.dll": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "runtime.win-x86.Microsoft.Private.CoreFx.NETCoreApp": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.1/Microsoft.CSharp.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.dll": {}, + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.dll": {}, + "ref/netcoreapp3.1/System.AppContext.dll": {}, + "ref/netcoreapp3.1/System.Buffers.dll": {}, + "ref/netcoreapp3.1/System.Collections.Concurrent.dll": {}, + "ref/netcoreapp3.1/System.Collections.Immutable.dll": {}, + "ref/netcoreapp3.1/System.Collections.NonGeneric.dll": {}, + "ref/netcoreapp3.1/System.Collections.Specialized.dll": {}, + "ref/netcoreapp3.1/System.Collections.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Annotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Primitives.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.dll": {}, + "ref/netcoreapp3.1/System.Configuration.dll": {}, + "ref/netcoreapp3.1/System.Console.dll": {}, + "ref/netcoreapp3.1/System.Core.dll": {}, + "ref/netcoreapp3.1/System.Data.Common.dll": {}, + "ref/netcoreapp3.1/System.Data.DataSetExtensions.dll": {}, + "ref/netcoreapp3.1/System.Data.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Contracts.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Debug.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Process.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tools.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tracing.dll": {}, + "ref/netcoreapp3.1/System.Drawing.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Drawing.dll": {}, + "ref/netcoreapp3.1/System.Dynamic.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Calendars.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Globalization.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.Brotli.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Primitives.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.IsolatedStorage.dll": {}, + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.dll": {}, + "ref/netcoreapp3.1/System.IO.Pipes.dll": {}, + "ref/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/netcoreapp3.1/System.IO.dll": {}, + "ref/netcoreapp3.1/System.Linq.Expressions.dll": {}, + "ref/netcoreapp3.1/System.Linq.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Linq.Queryable.dll": {}, + "ref/netcoreapp3.1/System.Linq.dll": {}, + "ref/netcoreapp3.1/System.Memory.dll": {}, + "ref/netcoreapp3.1/System.Net.Http.dll": {}, + "ref/netcoreapp3.1/System.Net.HttpListener.dll": {}, + "ref/netcoreapp3.1/System.Net.Mail.dll": {}, + "ref/netcoreapp3.1/System.Net.NameResolution.dll": {}, + "ref/netcoreapp3.1/System.Net.NetworkInformation.dll": {}, + "ref/netcoreapp3.1/System.Net.Ping.dll": {}, + "ref/netcoreapp3.1/System.Net.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Net.Requests.dll": {}, + "ref/netcoreapp3.1/System.Net.Security.dll": {}, + "ref/netcoreapp3.1/System.Net.ServicePoint.dll": {}, + "ref/netcoreapp3.1/System.Net.Sockets.dll": {}, + "ref/netcoreapp3.1/System.Net.WebClient.dll": {}, + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.dll": {}, + "ref/netcoreapp3.1/System.Net.WebProxy.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.Client.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.dll": {}, + "ref/netcoreapp3.1/System.Net.dll": {}, + "ref/netcoreapp3.1/System.Numerics.Vectors.dll": {}, + "ref/netcoreapp3.1/System.Numerics.dll": {}, + "ref/netcoreapp3.1/System.ObjectModel.dll": {}, + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Metadata.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.dll": {}, + "ref/netcoreapp3.1/System.Resources.Reader.dll": {}, + "ref/netcoreapp3.1/System.Resources.ResourceManager.dll": {}, + "ref/netcoreapp3.1/System.Resources.Writer.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Handles.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Intrinsics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Loader.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Numerics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Security.Claims.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/netcoreapp3.1/System.Security.Principal.dll": {}, + "ref/netcoreapp3.1/System.Security.SecureString.dll": {}, + "ref/netcoreapp3.1/System.Security.dll": {}, + "ref/netcoreapp3.1/System.ServiceModel.Web.dll": {}, + "ref/netcoreapp3.1/System.ServiceProcess.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Text.Encodings.Web.dll": {}, + "ref/netcoreapp3.1/System.Text.Json.dll": {}, + "ref/netcoreapp3.1/System.Text.RegularExpressions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Channels.dll": {}, + "ref/netcoreapp3.1/System.Threading.Overlapped.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.dll": {}, + "ref/netcoreapp3.1/System.Threading.Thread.dll": {}, + "ref/netcoreapp3.1/System.Threading.ThreadPool.dll": {}, + "ref/netcoreapp3.1/System.Threading.Timer.dll": {}, + "ref/netcoreapp3.1/System.Threading.dll": {}, + "ref/netcoreapp3.1/System.Transactions.Local.dll": {}, + "ref/netcoreapp3.1/System.Transactions.dll": {}, + "ref/netcoreapp3.1/System.ValueTuple.dll": {}, + "ref/netcoreapp3.1/System.Web.HttpUtility.dll": {}, + "ref/netcoreapp3.1/System.Web.dll": {}, + "ref/netcoreapp3.1/System.Windows.dll": {}, + "ref/netcoreapp3.1/System.Xml.Linq.dll": {}, + "ref/netcoreapp3.1/System.Xml.ReaderWriter.dll": {}, + "ref/netcoreapp3.1/System.Xml.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Xml.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlSerializer.dll": {}, + "ref/netcoreapp3.1/System.Xml.dll": {}, + "ref/netcoreapp3.1/System.dll": {}, + "ref/netcoreapp3.1/WindowsBase.dll": {}, + "ref/netcoreapp3.1/mscorlib.dll": {}, + "ref/netcoreapp3.1/netstandard.dll": {} + } + }, + "Microsoft.Win32.Registry/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + } + }, + "Microsoft.Win32.SystemEvents/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {} + } + }, + "runtime.win-x86.Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.CSharp.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.VisualBasic.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.Win32.Primitives.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.Win32.Registry.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.AppContext.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Buffers.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.Concurrent.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.Immutable.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.NonGeneric.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.Specialized.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.Annotations.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.Primitives.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Configuration.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Console.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Core.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Data.Common.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Data.DataSetExtensions.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Data.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Contracts.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Debug.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Process.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.StackTrace.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Tools.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.TraceSource.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Tracing.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Drawing.Primitives.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Drawing.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Dynamic.Runtime.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Globalization.Calendars.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Globalization.Extensions.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Globalization.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Compression.Brotli.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Compression.FileSystem.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Compression.ZipFile.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Compression.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.IsolatedStorage.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Pipes.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Linq.Expressions.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Linq.Parallel.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Linq.Queryable.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Linq.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Memory.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Http.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.HttpListener.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Mail.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.NameResolution.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.NetworkInformation.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Ping.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Primitives.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Requests.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Security.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.ServicePoint.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Sockets.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebClient.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebHeaderCollection.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebProxy.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebSockets.Client.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebSockets.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Numerics.Vectors.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Numerics.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.ObjectModel.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Private.DataContractSerialization.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Private.Uri.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Private.Xml.Linq.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Private.Xml.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.DispatchProxy.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Emit.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Extensions.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Metadata.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Primitives.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.TypeExtensions.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Resources.Reader.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Resources.ResourceManager.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Resources.Writer.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Extensions.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Handles.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.InteropServices.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Intrinsics.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Loader.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Numerics.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.Json.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.AccessControl.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Claims.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Cng.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Csp.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Principal.Windows.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Principal.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.SecureString.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.ServiceModel.Web.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.ServiceProcess.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Encoding.Extensions.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Encoding.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Encodings.Web.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Json.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.RegularExpressions.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Channels.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Overlapped.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Tasks.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Thread.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.ThreadPool.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Timer.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Transactions.Local.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Transactions.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.ValueTuple.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Web.HttpUtility.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Web.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Windows.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.Linq.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.ReaderWriter.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.Serialization.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XDocument.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XPath.XDocument.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XPath.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XmlDocument.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XmlSerializer.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/WindowsBase.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/mscorlib.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/netstandard.dll": {} + }, + "native": { + "runtimes/win-x86/native/clrcompression.dll": {}, + "runtimes/win-x86/native/clrcompression.pdb": {} + } + }, + "System.Diagnostics.EventLog/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "Microsoft.Win32.Registry": "4.7.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/System.Diagnostics.EventLog.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {} + } + }, + "System.Drawing.Common/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "Microsoft.Win32.SystemEvents": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Drawing.Common.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + }, + "System.Runtime.Intrinsics.Experimental/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll": {} + } + }, + "System.Security.AccessControl/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {} + } + }, + "System.Security.Permissions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview3.19551.4", + "System.Windows.Extensions": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {} + } + }, + "System.Windows.Extensions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.Diagnostics.Tools.RuntimeClient/1.0.4-preview6.19326.1": { + "sha512": "evpZfGTpiBlEWBp/2N5x1emi6b9IAJ0R24Xn80ZlnD3PLbnIthPve6M/YBN9qaLR3OJSlpp3Q3T6z9YHUESpAw==", + "type": "package", + "path": "microsoft.diagnostics.tools.runtimeclient/1.0.4-preview6.19326.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.dll", + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.pdb", + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.xml", + "microsoft.diagnostics.tools.runtimeclient.1.0.4-preview6.19326.1.nupkg.sha512", + "microsoft.diagnostics.tools.runtimeclient.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "sha512": "Clr2Jue6oyBlnsVf9g5qjoi06+QDYVq+U32buU9W+mRYeIFg4LXeJei1q6P/1niiKX8WIVo7KbBnqW80jVcOvw==", + "type": "package", + "path": "microsoft.netcore.platforms/3.1.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.3.1.0-preview3.19551.4.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "sha512": "pArsL7b8OzeIpQSHKwyJS6zHoLGbEG7Zu9FgncmsyZhr7BxcS7tKgmS5lcfWe1p8O8G6/UaNGskK5TQCk7LLCA==", + "type": "package", + "path": "microsoft.private.corefx.netcoreapp/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "microsoft.private.corefx.netcoreapp.4.7.0-preview3.19551.4.nupkg.sha512", + "microsoft.private.corefx.netcoreapp.nuspec", + "ref/netcoreapp3.1/Microsoft.CSharp.dll", + "ref/netcoreapp3.1/Microsoft.CSharp.pdb", + "ref/netcoreapp3.1/Microsoft.CSharp.xml", + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.dll", + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.pdb", + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.xml", + "ref/netcoreapp3.1/Microsoft.VisualBasic.dll", + "ref/netcoreapp3.1/Microsoft.VisualBasic.pdb", + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.dll", + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.pdb", + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.xml", + "ref/netcoreapp3.1/System.AppContext.dll", + "ref/netcoreapp3.1/System.AppContext.pdb", + "ref/netcoreapp3.1/System.Buffers.dll", + "ref/netcoreapp3.1/System.Buffers.pdb", + "ref/netcoreapp3.1/System.Buffers.xml", + "ref/netcoreapp3.1/System.Collections.Concurrent.dll", + "ref/netcoreapp3.1/System.Collections.Concurrent.pdb", + "ref/netcoreapp3.1/System.Collections.Concurrent.xml", + "ref/netcoreapp3.1/System.Collections.Immutable.dll", + "ref/netcoreapp3.1/System.Collections.Immutable.pdb", + "ref/netcoreapp3.1/System.Collections.Immutable.xml", + "ref/netcoreapp3.1/System.Collections.NonGeneric.dll", + "ref/netcoreapp3.1/System.Collections.NonGeneric.pdb", + "ref/netcoreapp3.1/System.Collections.NonGeneric.xml", + "ref/netcoreapp3.1/System.Collections.Specialized.dll", + "ref/netcoreapp3.1/System.Collections.Specialized.pdb", + "ref/netcoreapp3.1/System.Collections.Specialized.xml", + "ref/netcoreapp3.1/System.Collections.dll", + "ref/netcoreapp3.1/System.Collections.pdb", + "ref/netcoreapp3.1/System.Collections.xml", + "ref/netcoreapp3.1/System.ComponentModel.Annotations.dll", + "ref/netcoreapp3.1/System.ComponentModel.Annotations.pdb", + "ref/netcoreapp3.1/System.ComponentModel.Annotations.xml", + "ref/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll", + "ref/netcoreapp3.1/System.ComponentModel.DataAnnotations.pdb", + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll", + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.pdb", + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.xml", + "ref/netcoreapp3.1/System.ComponentModel.Primitives.dll", + "ref/netcoreapp3.1/System.ComponentModel.Primitives.pdb", + "ref/netcoreapp3.1/System.ComponentModel.Primitives.xml", + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.dll", + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.pdb", + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.xml", + "ref/netcoreapp3.1/System.ComponentModel.dll", + "ref/netcoreapp3.1/System.ComponentModel.pdb", + "ref/netcoreapp3.1/System.ComponentModel.xml", + "ref/netcoreapp3.1/System.Configuration.dll", + "ref/netcoreapp3.1/System.Configuration.pdb", + "ref/netcoreapp3.1/System.Console.dll", + "ref/netcoreapp3.1/System.Console.pdb", + "ref/netcoreapp3.1/System.Console.xml", + "ref/netcoreapp3.1/System.Core.dll", + "ref/netcoreapp3.1/System.Core.pdb", + "ref/netcoreapp3.1/System.Data.Common.dll", + "ref/netcoreapp3.1/System.Data.Common.pdb", + "ref/netcoreapp3.1/System.Data.Common.xml", + "ref/netcoreapp3.1/System.Data.DataSetExtensions.dll", + "ref/netcoreapp3.1/System.Data.DataSetExtensions.pdb", + "ref/netcoreapp3.1/System.Data.dll", + "ref/netcoreapp3.1/System.Data.pdb", + "ref/netcoreapp3.1/System.Diagnostics.Contracts.dll", + "ref/netcoreapp3.1/System.Diagnostics.Contracts.pdb", + "ref/netcoreapp3.1/System.Diagnostics.Contracts.xml", + "ref/netcoreapp3.1/System.Diagnostics.Debug.dll", + "ref/netcoreapp3.1/System.Diagnostics.Debug.pdb", + "ref/netcoreapp3.1/System.Diagnostics.Debug.xml", + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll", + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.pdb", + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.xml", + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll", + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.pdb", + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.xml", + "ref/netcoreapp3.1/System.Diagnostics.Process.dll", + "ref/netcoreapp3.1/System.Diagnostics.Process.pdb", + "ref/netcoreapp3.1/System.Diagnostics.Process.xml", + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.dll", + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.pdb", + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.xml", + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll", + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.pdb", + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netcoreapp3.1/System.Diagnostics.Tools.dll", + "ref/netcoreapp3.1/System.Diagnostics.Tools.pdb", + "ref/netcoreapp3.1/System.Diagnostics.Tools.xml", + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.dll", + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.pdb", + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.xml", + "ref/netcoreapp3.1/System.Diagnostics.Tracing.dll", + "ref/netcoreapp3.1/System.Diagnostics.Tracing.pdb", + "ref/netcoreapp3.1/System.Diagnostics.Tracing.xml", + "ref/netcoreapp3.1/System.Drawing.Primitives.dll", + "ref/netcoreapp3.1/System.Drawing.Primitives.pdb", + "ref/netcoreapp3.1/System.Drawing.Primitives.xml", + "ref/netcoreapp3.1/System.Drawing.dll", + "ref/netcoreapp3.1/System.Drawing.pdb", + "ref/netcoreapp3.1/System.Dynamic.Runtime.dll", + "ref/netcoreapp3.1/System.Dynamic.Runtime.pdb", + "ref/netcoreapp3.1/System.Globalization.Calendars.dll", + "ref/netcoreapp3.1/System.Globalization.Calendars.pdb", + "ref/netcoreapp3.1/System.Globalization.Extensions.dll", + "ref/netcoreapp3.1/System.Globalization.Extensions.pdb", + "ref/netcoreapp3.1/System.Globalization.dll", + "ref/netcoreapp3.1/System.Globalization.pdb", + "ref/netcoreapp3.1/System.IO.Compression.Brotli.dll", + "ref/netcoreapp3.1/System.IO.Compression.Brotli.pdb", + "ref/netcoreapp3.1/System.IO.Compression.Brotli.xml", + "ref/netcoreapp3.1/System.IO.Compression.FileSystem.dll", + "ref/netcoreapp3.1/System.IO.Compression.FileSystem.pdb", + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.dll", + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.pdb", + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.xml", + "ref/netcoreapp3.1/System.IO.Compression.dll", + "ref/netcoreapp3.1/System.IO.Compression.pdb", + "ref/netcoreapp3.1/System.IO.Compression.xml", + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll", + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.pdb", + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.xml", + "ref/netcoreapp3.1/System.IO.FileSystem.Primitives.dll", + "ref/netcoreapp3.1/System.IO.FileSystem.Primitives.pdb", + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.dll", + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.pdb", + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.xml", + "ref/netcoreapp3.1/System.IO.FileSystem.dll", + "ref/netcoreapp3.1/System.IO.FileSystem.pdb", + "ref/netcoreapp3.1/System.IO.FileSystem.xml", + "ref/netcoreapp3.1/System.IO.IsolatedStorage.dll", + "ref/netcoreapp3.1/System.IO.IsolatedStorage.pdb", + "ref/netcoreapp3.1/System.IO.IsolatedStorage.xml", + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.dll", + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.pdb", + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.xml", + "ref/netcoreapp3.1/System.IO.Pipes.dll", + "ref/netcoreapp3.1/System.IO.Pipes.pdb", + "ref/netcoreapp3.1/System.IO.Pipes.xml", + "ref/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll", + "ref/netcoreapp3.1/System.IO.UnmanagedMemoryStream.pdb", + "ref/netcoreapp3.1/System.IO.dll", + "ref/netcoreapp3.1/System.IO.pdb", + "ref/netcoreapp3.1/System.Linq.Expressions.dll", + "ref/netcoreapp3.1/System.Linq.Expressions.pdb", + "ref/netcoreapp3.1/System.Linq.Expressions.xml", + "ref/netcoreapp3.1/System.Linq.Parallel.dll", + "ref/netcoreapp3.1/System.Linq.Parallel.pdb", + "ref/netcoreapp3.1/System.Linq.Parallel.xml", + "ref/netcoreapp3.1/System.Linq.Queryable.dll", + "ref/netcoreapp3.1/System.Linq.Queryable.pdb", + "ref/netcoreapp3.1/System.Linq.Queryable.xml", + "ref/netcoreapp3.1/System.Linq.dll", + "ref/netcoreapp3.1/System.Linq.pdb", + "ref/netcoreapp3.1/System.Linq.xml", + "ref/netcoreapp3.1/System.Memory.dll", + "ref/netcoreapp3.1/System.Memory.pdb", + "ref/netcoreapp3.1/System.Memory.xml", + "ref/netcoreapp3.1/System.Net.Http.dll", + "ref/netcoreapp3.1/System.Net.Http.pdb", + "ref/netcoreapp3.1/System.Net.Http.xml", + "ref/netcoreapp3.1/System.Net.HttpListener.dll", + "ref/netcoreapp3.1/System.Net.HttpListener.pdb", + "ref/netcoreapp3.1/System.Net.HttpListener.xml", + "ref/netcoreapp3.1/System.Net.Mail.dll", + "ref/netcoreapp3.1/System.Net.Mail.pdb", + "ref/netcoreapp3.1/System.Net.Mail.xml", + "ref/netcoreapp3.1/System.Net.NameResolution.dll", + "ref/netcoreapp3.1/System.Net.NameResolution.pdb", + "ref/netcoreapp3.1/System.Net.NameResolution.xml", + "ref/netcoreapp3.1/System.Net.NetworkInformation.dll", + "ref/netcoreapp3.1/System.Net.NetworkInformation.pdb", + "ref/netcoreapp3.1/System.Net.NetworkInformation.xml", + "ref/netcoreapp3.1/System.Net.Ping.dll", + "ref/netcoreapp3.1/System.Net.Ping.pdb", + "ref/netcoreapp3.1/System.Net.Ping.xml", + "ref/netcoreapp3.1/System.Net.Primitives.dll", + "ref/netcoreapp3.1/System.Net.Primitives.pdb", + "ref/netcoreapp3.1/System.Net.Primitives.xml", + "ref/netcoreapp3.1/System.Net.Requests.dll", + "ref/netcoreapp3.1/System.Net.Requests.pdb", + "ref/netcoreapp3.1/System.Net.Requests.xml", + "ref/netcoreapp3.1/System.Net.Security.dll", + "ref/netcoreapp3.1/System.Net.Security.pdb", + "ref/netcoreapp3.1/System.Net.Security.xml", + "ref/netcoreapp3.1/System.Net.ServicePoint.dll", + "ref/netcoreapp3.1/System.Net.ServicePoint.pdb", + "ref/netcoreapp3.1/System.Net.ServicePoint.xml", + "ref/netcoreapp3.1/System.Net.Sockets.dll", + "ref/netcoreapp3.1/System.Net.Sockets.pdb", + "ref/netcoreapp3.1/System.Net.Sockets.xml", + "ref/netcoreapp3.1/System.Net.WebClient.dll", + "ref/netcoreapp3.1/System.Net.WebClient.pdb", + "ref/netcoreapp3.1/System.Net.WebClient.xml", + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.dll", + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.pdb", + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.xml", + "ref/netcoreapp3.1/System.Net.WebProxy.dll", + "ref/netcoreapp3.1/System.Net.WebProxy.pdb", + "ref/netcoreapp3.1/System.Net.WebProxy.xml", + "ref/netcoreapp3.1/System.Net.WebSockets.Client.dll", + "ref/netcoreapp3.1/System.Net.WebSockets.Client.pdb", + "ref/netcoreapp3.1/System.Net.WebSockets.Client.xml", + "ref/netcoreapp3.1/System.Net.WebSockets.dll", + "ref/netcoreapp3.1/System.Net.WebSockets.pdb", + "ref/netcoreapp3.1/System.Net.WebSockets.xml", + "ref/netcoreapp3.1/System.Net.dll", + "ref/netcoreapp3.1/System.Net.pdb", + "ref/netcoreapp3.1/System.Numerics.Vectors.dll", + "ref/netcoreapp3.1/System.Numerics.Vectors.pdb", + "ref/netcoreapp3.1/System.Numerics.Vectors.xml", + "ref/netcoreapp3.1/System.Numerics.dll", + "ref/netcoreapp3.1/System.Numerics.pdb", + "ref/netcoreapp3.1/System.ObjectModel.dll", + "ref/netcoreapp3.1/System.ObjectModel.pdb", + "ref/netcoreapp3.1/System.ObjectModel.xml", + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.dll", + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.pdb", + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.xml", + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll", + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.pdb", + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.xml", + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll", + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.pdb", + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.xml", + "ref/netcoreapp3.1/System.Reflection.Emit.dll", + "ref/netcoreapp3.1/System.Reflection.Emit.pdb", + "ref/netcoreapp3.1/System.Reflection.Emit.xml", + "ref/netcoreapp3.1/System.Reflection.Extensions.dll", + "ref/netcoreapp3.1/System.Reflection.Extensions.pdb", + "ref/netcoreapp3.1/System.Reflection.Metadata.dll", + "ref/netcoreapp3.1/System.Reflection.Metadata.pdb", + "ref/netcoreapp3.1/System.Reflection.Metadata.xml", + "ref/netcoreapp3.1/System.Reflection.Primitives.dll", + "ref/netcoreapp3.1/System.Reflection.Primitives.pdb", + "ref/netcoreapp3.1/System.Reflection.Primitives.xml", + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.dll", + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.pdb", + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.xml", + "ref/netcoreapp3.1/System.Reflection.dll", + "ref/netcoreapp3.1/System.Reflection.pdb", + "ref/netcoreapp3.1/System.Resources.Reader.dll", + "ref/netcoreapp3.1/System.Resources.Reader.pdb", + "ref/netcoreapp3.1/System.Resources.ResourceManager.dll", + "ref/netcoreapp3.1/System.Resources.ResourceManager.pdb", + "ref/netcoreapp3.1/System.Resources.ResourceManager.xml", + "ref/netcoreapp3.1/System.Resources.Writer.dll", + "ref/netcoreapp3.1/System.Resources.Writer.pdb", + "ref/netcoreapp3.1/System.Resources.Writer.xml", + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.pdb", + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll", + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.pdb", + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.xml", + "ref/netcoreapp3.1/System.Runtime.Extensions.dll", + "ref/netcoreapp3.1/System.Runtime.Extensions.pdb", + "ref/netcoreapp3.1/System.Runtime.Extensions.xml", + "ref/netcoreapp3.1/System.Runtime.Handles.dll", + "ref/netcoreapp3.1/System.Runtime.Handles.pdb", + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.pdb", + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.xml", + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll", + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.pdb", + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/netcoreapp3.1/System.Runtime.InteropServices.dll", + "ref/netcoreapp3.1/System.Runtime.InteropServices.pdb", + "ref/netcoreapp3.1/System.Runtime.InteropServices.xml", + "ref/netcoreapp3.1/System.Runtime.Intrinsics.dll", + "ref/netcoreapp3.1/System.Runtime.Intrinsics.pdb", + "ref/netcoreapp3.1/System.Runtime.Intrinsics.xml", + "ref/netcoreapp3.1/System.Runtime.Loader.dll", + "ref/netcoreapp3.1/System.Runtime.Loader.pdb", + "ref/netcoreapp3.1/System.Runtime.Loader.xml", + "ref/netcoreapp3.1/System.Runtime.Numerics.dll", + "ref/netcoreapp3.1/System.Runtime.Numerics.pdb", + "ref/netcoreapp3.1/System.Runtime.Numerics.xml", + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll", + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.pdb", + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.xml", + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.dll", + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.pdb", + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.xml", + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll", + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.pdb", + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.xml", + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.dll", + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.pdb", + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.xml", + "ref/netcoreapp3.1/System.Runtime.Serialization.dll", + "ref/netcoreapp3.1/System.Runtime.Serialization.pdb", + "ref/netcoreapp3.1/System.Runtime.dll", + "ref/netcoreapp3.1/System.Runtime.pdb", + "ref/netcoreapp3.1/System.Runtime.xml", + "ref/netcoreapp3.1/System.Security.Claims.dll", + "ref/netcoreapp3.1/System.Security.Claims.pdb", + "ref/netcoreapp3.1/System.Security.Claims.xml", + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll", + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.pdb", + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.xml", + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.dll", + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.pdb", + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.xml", + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.dll", + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.pdb", + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.xml", + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.dll", + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.pdb", + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.xml", + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll", + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.pdb", + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.xml", + "ref/netcoreapp3.1/System.Security.Principal.dll", + "ref/netcoreapp3.1/System.Security.Principal.pdb", + "ref/netcoreapp3.1/System.Security.Principal.xml", + "ref/netcoreapp3.1/System.Security.SecureString.dll", + "ref/netcoreapp3.1/System.Security.SecureString.pdb", + "ref/netcoreapp3.1/System.Security.dll", + "ref/netcoreapp3.1/System.Security.pdb", + "ref/netcoreapp3.1/System.ServiceModel.Web.dll", + "ref/netcoreapp3.1/System.ServiceModel.Web.pdb", + "ref/netcoreapp3.1/System.ServiceProcess.dll", + "ref/netcoreapp3.1/System.ServiceProcess.pdb", + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.pdb", + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.xml", + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.dll", + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.pdb", + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.xml", + "ref/netcoreapp3.1/System.Text.Encoding.dll", + "ref/netcoreapp3.1/System.Text.Encoding.pdb", + "ref/netcoreapp3.1/System.Text.Encodings.Web.dll", + "ref/netcoreapp3.1/System.Text.Encodings.Web.pdb", + "ref/netcoreapp3.1/System.Text.Encodings.Web.xml", + "ref/netcoreapp3.1/System.Text.Json.dll", + "ref/netcoreapp3.1/System.Text.Json.pdb", + "ref/netcoreapp3.1/System.Text.Json.xml", + "ref/netcoreapp3.1/System.Text.RegularExpressions.dll", + "ref/netcoreapp3.1/System.Text.RegularExpressions.pdb", + "ref/netcoreapp3.1/System.Text.RegularExpressions.xml", + "ref/netcoreapp3.1/System.Threading.Channels.dll", + "ref/netcoreapp3.1/System.Threading.Channels.pdb", + "ref/netcoreapp3.1/System.Threading.Channels.xml", + "ref/netcoreapp3.1/System.Threading.Overlapped.dll", + "ref/netcoreapp3.1/System.Threading.Overlapped.pdb", + "ref/netcoreapp3.1/System.Threading.Overlapped.xml", + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll", + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.pdb", + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.xml", + "ref/netcoreapp3.1/System.Threading.Tasks.Extensions.dll", + "ref/netcoreapp3.1/System.Threading.Tasks.Extensions.pdb", + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.dll", + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.pdb", + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.xml", + "ref/netcoreapp3.1/System.Threading.Tasks.dll", + "ref/netcoreapp3.1/System.Threading.Tasks.pdb", + "ref/netcoreapp3.1/System.Threading.Tasks.xml", + "ref/netcoreapp3.1/System.Threading.Thread.dll", + "ref/netcoreapp3.1/System.Threading.Thread.pdb", + "ref/netcoreapp3.1/System.Threading.Thread.xml", + "ref/netcoreapp3.1/System.Threading.ThreadPool.dll", + "ref/netcoreapp3.1/System.Threading.ThreadPool.pdb", + "ref/netcoreapp3.1/System.Threading.ThreadPool.xml", + "ref/netcoreapp3.1/System.Threading.Timer.dll", + "ref/netcoreapp3.1/System.Threading.Timer.pdb", + "ref/netcoreapp3.1/System.Threading.Timer.xml", + "ref/netcoreapp3.1/System.Threading.dll", + "ref/netcoreapp3.1/System.Threading.pdb", + "ref/netcoreapp3.1/System.Threading.xml", + "ref/netcoreapp3.1/System.Transactions.Local.dll", + "ref/netcoreapp3.1/System.Transactions.Local.pdb", + "ref/netcoreapp3.1/System.Transactions.Local.xml", + "ref/netcoreapp3.1/System.Transactions.dll", + "ref/netcoreapp3.1/System.Transactions.pdb", + "ref/netcoreapp3.1/System.ValueTuple.dll", + "ref/netcoreapp3.1/System.ValueTuple.pdb", + "ref/netcoreapp3.1/System.Web.HttpUtility.dll", + "ref/netcoreapp3.1/System.Web.HttpUtility.pdb", + "ref/netcoreapp3.1/System.Web.HttpUtility.xml", + "ref/netcoreapp3.1/System.Web.dll", + "ref/netcoreapp3.1/System.Web.pdb", + "ref/netcoreapp3.1/System.Windows.dll", + "ref/netcoreapp3.1/System.Windows.pdb", + "ref/netcoreapp3.1/System.Xml.Linq.dll", + "ref/netcoreapp3.1/System.Xml.Linq.pdb", + "ref/netcoreapp3.1/System.Xml.ReaderWriter.dll", + "ref/netcoreapp3.1/System.Xml.ReaderWriter.pdb", + "ref/netcoreapp3.1/System.Xml.ReaderWriter.xml", + "ref/netcoreapp3.1/System.Xml.Serialization.dll", + "ref/netcoreapp3.1/System.Xml.Serialization.pdb", + "ref/netcoreapp3.1/System.Xml.XDocument.dll", + "ref/netcoreapp3.1/System.Xml.XDocument.pdb", + "ref/netcoreapp3.1/System.Xml.XDocument.xml", + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.dll", + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.pdb", + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.xml", + "ref/netcoreapp3.1/System.Xml.XPath.dll", + "ref/netcoreapp3.1/System.Xml.XPath.pdb", + "ref/netcoreapp3.1/System.Xml.XPath.xml", + "ref/netcoreapp3.1/System.Xml.XmlDocument.dll", + "ref/netcoreapp3.1/System.Xml.XmlDocument.pdb", + "ref/netcoreapp3.1/System.Xml.XmlSerializer.dll", + "ref/netcoreapp3.1/System.Xml.XmlSerializer.pdb", + "ref/netcoreapp3.1/System.Xml.XmlSerializer.xml", + "ref/netcoreapp3.1/System.Xml.dll", + "ref/netcoreapp3.1/System.Xml.pdb", + "ref/netcoreapp3.1/System.dll", + "ref/netcoreapp3.1/System.pdb", + "ref/netcoreapp3.1/WindowsBase.dll", + "ref/netcoreapp3.1/WindowsBase.pdb", + "ref/netcoreapp3.1/WindowsBase.xml", + "ref/netcoreapp3.1/mscorlib.dll", + "ref/netcoreapp3.1/mscorlib.pdb", + "ref/netcoreapp3.1/netstandard.dll", + "ref/netcoreapp3.1/netstandard.pdb", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.Registry/4.7.0-preview3.19551.4": { + "sha512": "4y+CUMrtvvj9WbQDz4Sck3nEJopfLMi+p+BrYkBHmYGp8juzbBCBNKWB0jOXBnDY+pW7bDHQ1ARA6QCH2S3SHg==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0-preview3.19551.4.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/net472/Microsoft.Win32.Registry.dll", + "ref/net472/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.SystemEvents/4.7.0-preview3.19551.4": { + "sha512": "agmxXP9/xsxB6MCGXW6lMKUCe/gmsLYKRSxIUIA7WjjDM4qWzopxZ5ekQzn9qnG37mPh2U5O0yVpPZ3Pfwf7Dg==", + "type": "package", + "path": "microsoft.win32.systemevents/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.4.7.0-preview3.19551.4.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "ref/net461/Microsoft.Win32.SystemEvents.dll", + "ref/net461/Microsoft.Win32.SystemEvents.xml", + "ref/net472/Microsoft.Win32.SystemEvents.dll", + "ref/net472/Microsoft.Win32.SystemEvents.xml", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.linux-x64.Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "sha512": "OC5vJ8jPCZT5ft0TyUZ5V1zd5rs6TqV8Dxehnc+G10LNBrvCSOno/JJ94gkXzk27P8sk/8a5ncfBjvzC/KBF7w==", + "type": "package", + "path": "runtime.linux-x64.microsoft.private.corefx.netcoreapp/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.linux-x64.microsoft.private.corefx.netcoreapp.4.7.0-preview3.19551.4.nupkg.sha512", + "runtime.linux-x64.microsoft.private.corefx.netcoreapp.nuspec", + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.CSharp.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.CSharp.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.Win32.Primitives.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.Win32.Primitives.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.Win32.Registry.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.Win32.Registry.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.AppContext.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.AppContext.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Buffers.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Buffers.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.Concurrent.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.Concurrent.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.Immutable.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.Immutable.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.NonGeneric.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.NonGeneric.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.Specialized.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.Specialized.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.Annotations.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.Annotations.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.Primitives.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.Primitives.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Configuration.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Configuration.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Console.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Console.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Core.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Core.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Data.Common.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Data.Common.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Data.DataSetExtensions.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Data.DataSetExtensions.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Data.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Data.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Contracts.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Contracts.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Debug.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Debug.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Process.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Process.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.StackTrace.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.StackTrace.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Tools.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Tools.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.TraceSource.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.TraceSource.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Tracing.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Tracing.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Drawing.Primitives.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Drawing.Primitives.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Drawing.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Drawing.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Dynamic.Runtime.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Dynamic.Runtime.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Globalization.Calendars.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Globalization.Calendars.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Globalization.Extensions.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Globalization.Extensions.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Globalization.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Globalization.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Compression.Brotli.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Compression.Brotli.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Compression.FileSystem.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Compression.FileSystem.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Compression.ZipFile.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Compression.ZipFile.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Compression.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Compression.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.IsolatedStorage.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.IsolatedStorage.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Pipes.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Pipes.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Linq.Expressions.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Linq.Expressions.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Linq.Parallel.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Linq.Parallel.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Linq.Queryable.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Linq.Queryable.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Linq.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Linq.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Memory.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Memory.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Http.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Http.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.HttpListener.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.HttpListener.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Mail.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Mail.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.NameResolution.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.NameResolution.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.NetworkInformation.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.NetworkInformation.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Ping.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Ping.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Primitives.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Primitives.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Requests.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Requests.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Security.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Security.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.ServicePoint.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.ServicePoint.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Sockets.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Sockets.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebClient.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebClient.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebHeaderCollection.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebHeaderCollection.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebProxy.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebProxy.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebSockets.Client.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebSockets.Client.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebSockets.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebSockets.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Numerics.Vectors.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Numerics.Vectors.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Numerics.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Numerics.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ObjectModel.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ObjectModel.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Private.DataContractSerialization.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Private.DataContractSerialization.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Private.Uri.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Private.Uri.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Private.Xml.Linq.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Private.Xml.Linq.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Private.Xml.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Private.Xml.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.DispatchProxy.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.DispatchProxy.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Emit.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Emit.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Extensions.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Extensions.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Metadata.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Metadata.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Primitives.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Primitives.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.TypeExtensions.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.TypeExtensions.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Resources.Reader.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Resources.Reader.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Resources.ResourceManager.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Resources.ResourceManager.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Resources.Writer.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Resources.Writer.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Extensions.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Extensions.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Handles.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Handles.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Intrinsics.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Intrinsics.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Loader.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Loader.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Numerics.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Numerics.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Json.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Json.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.AccessControl.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.AccessControl.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Claims.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Claims.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Cng.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Cng.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Csp.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Csp.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Principal.Windows.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Principal.Windows.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Principal.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Principal.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.SecureString.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.SecureString.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ServiceModel.Web.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ServiceModel.Web.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ServiceProcess.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ServiceProcess.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Encoding.CodePages.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Encoding.Extensions.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Encoding.Extensions.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Encoding.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Encoding.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Encodings.Web.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Json.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Json.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.RegularExpressions.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.RegularExpressions.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Channels.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Channels.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Overlapped.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Overlapped.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Tasks.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Tasks.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Thread.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Thread.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.ThreadPool.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.ThreadPool.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Timer.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Timer.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Transactions.Local.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Transactions.Local.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Transactions.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Transactions.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ValueTuple.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ValueTuple.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Web.HttpUtility.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Web.HttpUtility.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Web.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Web.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Windows.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Windows.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.Linq.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.Linq.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.ReaderWriter.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.ReaderWriter.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.Serialization.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.Serialization.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XDocument.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XDocument.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XPath.XDocument.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XPath.XDocument.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XPath.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XPath.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XmlDocument.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XmlDocument.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XmlSerializer.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XmlSerializer.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/WindowsBase.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/WindowsBase.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/WindowsBase.xml", + "runtimes/linux-x64/lib/netcoreapp3.1/mscorlib.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/mscorlib.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/netstandard.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/netstandard.pdb", + "runtimes/linux-x64/native/System.IO.Compression.Native.a", + "runtimes/linux-x64/native/System.IO.Compression.Native.so", + "runtimes/linux-x64/native/System.IO.Compression.Native.so.dbg", + "runtimes/linux-x64/native/System.Native.a", + "runtimes/linux-x64/native/System.Native.so", + "runtimes/linux-x64/native/System.Native.so.dbg", + "runtimes/linux-x64/native/System.Net.Http.Native.a", + "runtimes/linux-x64/native/System.Net.Http.Native.so", + "runtimes/linux-x64/native/System.Net.Http.Native.so.dbg", + "runtimes/linux-x64/native/System.Net.Security.Native.a", + "runtimes/linux-x64/native/System.Net.Security.Native.so", + "runtimes/linux-x64/native/System.Net.Security.Native.so.dbg", + "runtimes/linux-x64/native/System.Security.Cryptography.Native.OpenSsl.a", + "runtimes/linux-x64/native/System.Security.Cryptography.Native.OpenSsl.so", + "runtimes/linux-x64/native/System.Security.Cryptography.Native.OpenSsl.so.dbg", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-arm.Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "sha512": "uvfxmQCSNcseVxXqNkW/1fI8E+lELVPIWsb9P8xpNQFu5v4X50p6/9qm8+DQV2DmYBNhUUkjm9qacCn5tIQSLw==", + "type": "package", + "path": "runtime.win-arm.microsoft.private.corefx.netcoreapp/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win-arm.microsoft.private.corefx.netcoreapp.4.7.0-preview3.19551.4.nupkg.sha512", + "runtime.win-arm.microsoft.private.corefx.netcoreapp.nuspec", + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.CSharp.dll", + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.CSharp.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.dll", + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.VisualBasic.dll", + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.VisualBasic.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.Win32.Primitives.dll", + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.Win32.Primitives.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.Win32.Registry.dll", + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.Win32.Registry.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.AppContext.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.AppContext.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Buffers.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Buffers.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.Concurrent.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.Concurrent.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.Immutable.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.Immutable.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.NonGeneric.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.NonGeneric.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.Specialized.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.Specialized.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.Annotations.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.Annotations.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.Primitives.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.Primitives.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Configuration.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Configuration.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Console.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Console.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Core.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Core.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Data.Common.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Data.Common.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Data.DataSetExtensions.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Data.DataSetExtensions.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Data.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Data.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Contracts.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Contracts.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Debug.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Debug.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Process.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Process.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.StackTrace.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.StackTrace.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Tools.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Tools.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.TraceSource.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.TraceSource.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Tracing.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Tracing.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Drawing.Primitives.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Drawing.Primitives.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Drawing.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Drawing.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Dynamic.Runtime.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Dynamic.Runtime.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Globalization.Calendars.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Globalization.Calendars.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Globalization.Extensions.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Globalization.Extensions.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Globalization.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Globalization.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Compression.Brotli.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Compression.Brotli.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Compression.FileSystem.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Compression.FileSystem.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Compression.ZipFile.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Compression.ZipFile.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Compression.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Compression.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.IsolatedStorage.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.IsolatedStorage.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Pipes.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Pipes.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Linq.Expressions.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Linq.Expressions.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Linq.Parallel.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Linq.Parallel.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Linq.Queryable.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Linq.Queryable.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Linq.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Linq.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Memory.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Memory.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Http.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Http.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.HttpListener.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.HttpListener.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Mail.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Mail.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.NameResolution.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.NameResolution.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.NetworkInformation.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.NetworkInformation.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Ping.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Ping.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Primitives.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Primitives.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Requests.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Requests.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Security.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Security.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.ServicePoint.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.ServicePoint.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Sockets.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Sockets.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebClient.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebClient.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebHeaderCollection.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebHeaderCollection.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebProxy.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebProxy.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebSockets.Client.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebSockets.Client.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebSockets.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebSockets.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Numerics.Vectors.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Numerics.Vectors.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Numerics.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Numerics.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.ObjectModel.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.ObjectModel.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Private.DataContractSerialization.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Private.DataContractSerialization.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Private.Uri.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Private.Uri.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Private.Xml.Linq.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Private.Xml.Linq.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Private.Xml.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Private.Xml.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.DispatchProxy.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.DispatchProxy.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Emit.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Emit.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Extensions.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Extensions.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Metadata.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Metadata.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Primitives.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Primitives.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.TypeExtensions.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.TypeExtensions.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Resources.Reader.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Resources.Reader.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Resources.ResourceManager.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Resources.ResourceManager.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Resources.Writer.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Resources.Writer.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Extensions.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Extensions.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Handles.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Handles.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.InteropServices.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.InteropServices.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Intrinsics.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Intrinsics.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Loader.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Loader.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Numerics.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Numerics.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.Json.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.Json.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.AccessControl.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.AccessControl.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Claims.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Claims.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Cng.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Cng.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Csp.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Csp.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Principal.Windows.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Principal.Windows.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Principal.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Principal.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.SecureString.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.SecureString.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.ServiceModel.Web.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.ServiceModel.Web.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.ServiceProcess.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.ServiceProcess.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Encoding.CodePages.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Encoding.Extensions.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Encoding.Extensions.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Encoding.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Encoding.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Encodings.Web.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Json.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Json.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.RegularExpressions.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.RegularExpressions.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Channels.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Channels.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Overlapped.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Overlapped.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Tasks.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Tasks.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Thread.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Thread.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.ThreadPool.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.ThreadPool.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Timer.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Timer.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Transactions.Local.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Transactions.Local.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Transactions.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Transactions.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.ValueTuple.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.ValueTuple.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Web.HttpUtility.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Web.HttpUtility.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Web.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Web.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Windows.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Windows.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.Linq.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.Linq.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.ReaderWriter.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.ReaderWriter.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.Serialization.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.Serialization.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XDocument.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XDocument.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XPath.XDocument.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XPath.XDocument.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XPath.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XPath.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XmlDocument.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XmlDocument.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XmlSerializer.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XmlSerializer.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/WindowsBase.dll", + "runtimes/win-arm/lib/netcoreapp3.1/WindowsBase.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/WindowsBase.xml", + "runtimes/win-arm/lib/netcoreapp3.1/mscorlib.dll", + "runtimes/win-arm/lib/netcoreapp3.1/mscorlib.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/netstandard.dll", + "runtimes/win-arm/lib/netcoreapp3.1/netstandard.pdb", + "runtimes/win-arm/native/clrcompression.dll", + "runtimes/win-arm/native/clrcompression.pdb", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-arm64.Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "sha512": "73E9EZCBa0o82lhvcwjm6RYBFFyViOl1iO+2cfKnPabgpdx4F70+Tm/3sZ/VT9kbVYkj2MOoLyaWB6V3UUl8HA==", + "type": "package", + "path": "runtime.win-arm64.microsoft.private.corefx.netcoreapp/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win-arm64.microsoft.private.corefx.netcoreapp.4.7.0-preview3.19551.4.nupkg.sha512", + "runtime.win-arm64.microsoft.private.corefx.netcoreapp.nuspec", + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.CSharp.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.CSharp.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.VisualBasic.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.VisualBasic.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.Win32.Primitives.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.Win32.Primitives.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.Win32.Registry.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.Win32.Registry.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.AppContext.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.AppContext.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Buffers.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Buffers.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.Concurrent.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.Concurrent.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.Immutable.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.Immutable.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.NonGeneric.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.NonGeneric.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.Specialized.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.Specialized.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.Annotations.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.Annotations.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.Primitives.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.Primitives.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Configuration.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Configuration.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Console.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Console.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Core.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Core.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Data.Common.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Data.Common.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Data.DataSetExtensions.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Data.DataSetExtensions.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Data.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Data.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Contracts.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Contracts.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Debug.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Debug.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Process.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Process.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.StackTrace.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.StackTrace.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Tools.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Tools.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.TraceSource.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.TraceSource.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Tracing.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Tracing.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Drawing.Primitives.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Drawing.Primitives.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Drawing.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Drawing.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Dynamic.Runtime.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Dynamic.Runtime.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Globalization.Calendars.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Globalization.Calendars.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Globalization.Extensions.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Globalization.Extensions.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Globalization.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Globalization.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Compression.Brotli.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Compression.Brotli.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Compression.FileSystem.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Compression.FileSystem.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Compression.ZipFile.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Compression.ZipFile.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Compression.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Compression.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.IsolatedStorage.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.IsolatedStorage.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Pipes.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Pipes.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Linq.Expressions.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Linq.Expressions.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Linq.Parallel.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Linq.Parallel.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Linq.Queryable.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Linq.Queryable.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Linq.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Linq.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Memory.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Memory.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Http.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Http.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.HttpListener.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.HttpListener.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Mail.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Mail.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.NameResolution.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.NameResolution.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.NetworkInformation.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.NetworkInformation.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Ping.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Ping.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Primitives.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Primitives.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Requests.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Requests.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Security.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Security.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.ServicePoint.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.ServicePoint.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Sockets.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Sockets.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebClient.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebClient.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebHeaderCollection.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebHeaderCollection.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebProxy.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebProxy.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebSockets.Client.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebSockets.Client.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebSockets.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebSockets.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Numerics.Vectors.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Numerics.Vectors.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Numerics.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Numerics.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ObjectModel.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ObjectModel.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Private.DataContractSerialization.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Private.DataContractSerialization.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Private.Uri.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Private.Uri.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Private.Xml.Linq.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Private.Xml.Linq.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Private.Xml.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Private.Xml.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.DispatchProxy.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.DispatchProxy.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Emit.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Emit.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Extensions.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Extensions.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Metadata.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Metadata.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Primitives.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Primitives.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.TypeExtensions.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.TypeExtensions.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Resources.Reader.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Resources.Reader.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Resources.ResourceManager.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Resources.ResourceManager.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Resources.Writer.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Resources.Writer.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Extensions.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Extensions.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Handles.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Handles.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.InteropServices.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.InteropServices.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Intrinsics.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Intrinsics.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Loader.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Loader.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Numerics.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Numerics.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.Json.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.Json.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.AccessControl.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.AccessControl.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Claims.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Claims.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Cng.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Cng.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Csp.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Csp.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Principal.Windows.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Principal.Windows.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Principal.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Principal.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.SecureString.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.SecureString.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ServiceModel.Web.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ServiceModel.Web.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ServiceProcess.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ServiceProcess.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Encoding.CodePages.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Encoding.Extensions.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Encoding.Extensions.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Encoding.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Encoding.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Encodings.Web.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Json.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Json.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.RegularExpressions.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.RegularExpressions.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Channels.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Channels.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Overlapped.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Overlapped.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Tasks.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Tasks.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Thread.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Thread.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.ThreadPool.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.ThreadPool.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Timer.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Timer.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Transactions.Local.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Transactions.Local.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Transactions.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Transactions.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ValueTuple.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ValueTuple.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Web.HttpUtility.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Web.HttpUtility.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Web.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Web.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Windows.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Windows.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.Linq.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.Linq.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.ReaderWriter.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.ReaderWriter.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.Serialization.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.Serialization.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XDocument.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XDocument.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XPath.XDocument.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XPath.XDocument.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XPath.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XPath.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XmlDocument.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XmlDocument.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XmlSerializer.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XmlSerializer.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/WindowsBase.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/WindowsBase.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/WindowsBase.xml", + "runtimes/win-arm64/lib/netcoreapp3.1/mscorlib.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/mscorlib.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/netstandard.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/netstandard.pdb", + "runtimes/win-arm64/native/clrcompression.dll", + "runtimes/win-arm64/native/clrcompression.pdb", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x64.Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "sha512": "viZYl1Pm/HVC0MudC1cjGrTZiHFpsWcRNYZFRxx8j5P9k47tKrOeSSeeJH0u4HasDO2v3jjlwXsWxHl5hDCCxQ==", + "type": "package", + "path": "runtime.win-x64.microsoft.private.corefx.netcoreapp/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win-x64.microsoft.private.corefx.netcoreapp.4.7.0-preview3.19551.4.nupkg.sha512", + "runtime.win-x64.microsoft.private.corefx.netcoreapp.nuspec", + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.CSharp.dll", + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.CSharp.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.dll", + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.dll", + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.Win32.Primitives.dll", + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.Win32.Primitives.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.Win32.Registry.dll", + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.Win32.Registry.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.AppContext.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.AppContext.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Buffers.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Buffers.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.Concurrent.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.Concurrent.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.Immutable.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.Immutable.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.NonGeneric.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.NonGeneric.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.Specialized.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.Specialized.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.Annotations.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.Annotations.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.Primitives.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.Primitives.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Configuration.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Configuration.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Console.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Console.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Core.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Core.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Data.Common.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Data.Common.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Data.DataSetExtensions.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Data.DataSetExtensions.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Data.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Data.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Contracts.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Contracts.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Debug.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Debug.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Process.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Process.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.StackTrace.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.StackTrace.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Tools.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Tools.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.TraceSource.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.TraceSource.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Tracing.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Tracing.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Drawing.Primitives.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Drawing.Primitives.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Drawing.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Drawing.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Dynamic.Runtime.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Dynamic.Runtime.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Globalization.Calendars.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Globalization.Calendars.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Globalization.Extensions.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Globalization.Extensions.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Globalization.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Globalization.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Compression.Brotli.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Compression.Brotli.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Compression.FileSystem.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Compression.FileSystem.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Compression.ZipFile.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Compression.ZipFile.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Compression.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Compression.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.IsolatedStorage.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.IsolatedStorage.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Pipes.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Pipes.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Linq.Expressions.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Linq.Expressions.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Linq.Parallel.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Linq.Parallel.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Linq.Queryable.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Linq.Queryable.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Linq.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Linq.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Memory.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Memory.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Http.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Http.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.HttpListener.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.HttpListener.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Mail.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Mail.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.NameResolution.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.NameResolution.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.NetworkInformation.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.NetworkInformation.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Ping.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Ping.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Primitives.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Primitives.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Requests.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Requests.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Security.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Security.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.ServicePoint.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.ServicePoint.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Sockets.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Sockets.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebClient.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebClient.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebHeaderCollection.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebHeaderCollection.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebProxy.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebProxy.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebSockets.Client.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebSockets.Client.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebSockets.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebSockets.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Numerics.Vectors.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Numerics.Vectors.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Numerics.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Numerics.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.ObjectModel.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.ObjectModel.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Private.DataContractSerialization.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Private.DataContractSerialization.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Private.Uri.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Private.Uri.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Private.Xml.Linq.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Private.Xml.Linq.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Private.Xml.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Private.Xml.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.DispatchProxy.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.DispatchProxy.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Emit.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Emit.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Extensions.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Extensions.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Metadata.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Metadata.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Primitives.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Primitives.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.TypeExtensions.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.TypeExtensions.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Resources.Reader.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Resources.Reader.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Resources.ResourceManager.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Resources.ResourceManager.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Resources.Writer.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Resources.Writer.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Extensions.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Extensions.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Handles.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Handles.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Intrinsics.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Intrinsics.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Loader.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Loader.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Numerics.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Numerics.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Json.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Json.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.AccessControl.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.AccessControl.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Claims.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Claims.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Cng.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Cng.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Csp.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Csp.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Principal.Windows.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Principal.Windows.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Principal.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Principal.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.SecureString.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.SecureString.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.ServiceModel.Web.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.ServiceModel.Web.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.ServiceProcess.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.ServiceProcess.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Encoding.CodePages.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Encoding.Extensions.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Encoding.Extensions.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Encoding.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Encoding.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Encodings.Web.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Json.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Json.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.RegularExpressions.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.RegularExpressions.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Channels.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Channels.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Overlapped.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Overlapped.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Tasks.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Tasks.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Thread.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Thread.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.ThreadPool.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.ThreadPool.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Timer.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Timer.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Transactions.Local.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Transactions.Local.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Transactions.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Transactions.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.ValueTuple.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.ValueTuple.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Web.HttpUtility.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Web.HttpUtility.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Web.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Web.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Windows.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Windows.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.Linq.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.Linq.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.ReaderWriter.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.ReaderWriter.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.Serialization.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.Serialization.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XDocument.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XDocument.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XPath.XDocument.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XPath.XDocument.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XPath.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XPath.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XmlDocument.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XmlDocument.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XmlSerializer.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XmlSerializer.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/WindowsBase.dll", + "runtimes/win-x64/lib/netcoreapp3.1/WindowsBase.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/WindowsBase.xml", + "runtimes/win-x64/lib/netcoreapp3.1/mscorlib.dll", + "runtimes/win-x64/lib/netcoreapp3.1/mscorlib.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/netstandard.dll", + "runtimes/win-x64/lib/netcoreapp3.1/netstandard.pdb", + "runtimes/win-x64/native/clrcompression.dll", + "runtimes/win-x64/native/clrcompression.pdb", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x86.Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "sha512": "9tz6S/gCobMO1HePhwhTOM4s7qrMpIdjyWUAdSo3JwlMYBBDCSu/2y+KC34v8gi8yhLe9UR9EDgA5jwiwY40GQ==", + "type": "package", + "path": "runtime.win-x86.microsoft.private.corefx.netcoreapp/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win-x86.microsoft.private.corefx.netcoreapp.4.7.0-preview3.19551.4.nupkg.sha512", + "runtime.win-x86.microsoft.private.corefx.netcoreapp.nuspec", + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.CSharp.dll", + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.CSharp.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.dll", + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.VisualBasic.dll", + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.VisualBasic.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.Win32.Primitives.dll", + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.Win32.Primitives.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.Win32.Registry.dll", + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.Win32.Registry.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.AppContext.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.AppContext.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Buffers.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Buffers.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.Concurrent.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.Concurrent.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.Immutable.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.Immutable.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.NonGeneric.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.NonGeneric.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.Specialized.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.Specialized.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.Annotations.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.Annotations.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.Primitives.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.Primitives.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Configuration.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Configuration.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Console.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Console.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Core.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Core.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Data.Common.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Data.Common.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Data.DataSetExtensions.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Data.DataSetExtensions.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Data.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Data.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Contracts.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Contracts.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Debug.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Debug.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Process.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Process.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.StackTrace.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.StackTrace.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Tools.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Tools.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.TraceSource.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.TraceSource.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Tracing.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Tracing.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Drawing.Primitives.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Drawing.Primitives.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Drawing.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Drawing.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Dynamic.Runtime.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Dynamic.Runtime.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Globalization.Calendars.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Globalization.Calendars.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Globalization.Extensions.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Globalization.Extensions.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Globalization.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Globalization.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Compression.Brotli.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Compression.Brotli.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Compression.FileSystem.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Compression.FileSystem.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Compression.ZipFile.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Compression.ZipFile.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Compression.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Compression.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.IsolatedStorage.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.IsolatedStorage.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Pipes.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Pipes.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Linq.Expressions.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Linq.Expressions.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Linq.Parallel.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Linq.Parallel.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Linq.Queryable.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Linq.Queryable.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Linq.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Linq.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Memory.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Memory.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Http.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Http.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.HttpListener.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.HttpListener.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Mail.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Mail.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.NameResolution.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.NameResolution.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.NetworkInformation.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.NetworkInformation.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Ping.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Ping.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Primitives.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Primitives.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Requests.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Requests.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Security.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Security.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.ServicePoint.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.ServicePoint.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Sockets.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Sockets.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebClient.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebClient.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebHeaderCollection.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebHeaderCollection.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebProxy.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebProxy.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebSockets.Client.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebSockets.Client.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebSockets.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebSockets.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Numerics.Vectors.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Numerics.Vectors.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Numerics.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Numerics.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.ObjectModel.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.ObjectModel.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Private.DataContractSerialization.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Private.DataContractSerialization.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Private.Uri.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Private.Uri.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Private.Xml.Linq.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Private.Xml.Linq.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Private.Xml.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Private.Xml.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.DispatchProxy.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.DispatchProxy.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Emit.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Emit.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Extensions.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Extensions.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Metadata.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Metadata.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Primitives.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Primitives.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.TypeExtensions.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.TypeExtensions.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Resources.Reader.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Resources.Reader.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Resources.ResourceManager.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Resources.ResourceManager.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Resources.Writer.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Resources.Writer.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Extensions.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Extensions.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Handles.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Handles.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.InteropServices.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.InteropServices.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Intrinsics.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Intrinsics.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Loader.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Loader.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Numerics.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Numerics.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.Json.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.Json.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.AccessControl.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.AccessControl.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Claims.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Claims.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Cng.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Cng.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Csp.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Csp.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Principal.Windows.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Principal.Windows.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Principal.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Principal.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.SecureString.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.SecureString.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.ServiceModel.Web.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.ServiceModel.Web.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.ServiceProcess.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.ServiceProcess.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Encoding.CodePages.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Encoding.Extensions.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Encoding.Extensions.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Encoding.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Encoding.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Encodings.Web.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Json.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Json.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.RegularExpressions.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.RegularExpressions.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Channels.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Channels.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Overlapped.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Overlapped.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Tasks.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Tasks.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Thread.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Thread.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.ThreadPool.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.ThreadPool.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Timer.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Timer.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Transactions.Local.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Transactions.Local.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Transactions.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Transactions.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.ValueTuple.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.ValueTuple.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Web.HttpUtility.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Web.HttpUtility.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Web.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Web.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Windows.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Windows.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.Linq.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.Linq.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.ReaderWriter.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.ReaderWriter.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.Serialization.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.Serialization.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XDocument.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XDocument.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XPath.XDocument.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XPath.XDocument.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XPath.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XPath.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XmlDocument.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XmlDocument.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XmlSerializer.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XmlSerializer.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/WindowsBase.dll", + "runtimes/win-x86/lib/netcoreapp3.1/WindowsBase.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/WindowsBase.xml", + "runtimes/win-x86/lib/netcoreapp3.1/mscorlib.dll", + "runtimes/win-x86/lib/netcoreapp3.1/mscorlib.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/netstandard.dll", + "runtimes/win-x86/lib/netcoreapp3.1/netstandard.pdb", + "runtimes/win-x86/native/clrcompression.dll", + "runtimes/win-x86/native/clrcompression.pdb", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.EventLog/4.7.0-preview3.19551.4": { + "sha512": "0v5YUH1GS4ZZjIHY9WLDhDuRcmpFuCKSJYa1V33hr1R7mrj5VEe4TubVupcBCRpjjaWpMfN1HJ1yK1/CsSR/0w==", + "type": "package", + "path": "system.diagnostics.eventlog/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Diagnostics.EventLog.dll", + "lib/net461/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "ref/net461/System.Diagnostics.EventLog.dll", + "ref/net461/System.Diagnostics.EventLog.xml", + "ref/net472/System.Diagnostics.EventLog.dll", + "ref/net472/System.Diagnostics.EventLog.xml", + "ref/netstandard2.0/System.Diagnostics.EventLog.dll", + "ref/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.4.7.0-preview3.19551.4.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Drawing.Common/4.7.0-preview3.19551.4": { + "sha512": "g5ObAYPAwcFKYOsAvRpiEX8++ox1oXnZcFCHkwCPKyjf3zcHercHSsiWfdGCxwMwOwoj/PF3G9D2iKu+df35Mw==", + "type": "package", + "path": "system.drawing.common/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.xml", + "ref/netstandard2.0/System.Drawing.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml", + "system.drawing.common.4.7.0-preview3.19551.4.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview3.19551.4": { + "sha512": "BU7m1FwolaGTh/+UP0SueOqXBNpcwROK7633HRNoZ9A2kBhdoi7nsKyjHLfae3GIxchV9Cxt9nDaeU2EdhPzxQ==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.4.7.0-preview3.19551.4.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Intrinsics.Experimental/4.7.0-preview3.19551.4": { + "sha512": "dtWYVemCsTgtSJ2yb1oH8sGpzD7SwbUly45kVBUkCpLaPtGHa1m052bBtLE8GMjmgIXDmB6ogcg95CUUOO+8gg==", + "type": "package", + "path": "system.runtime.intrinsics.experimental/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll", + "runtimes/unix/lib/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll", + "runtimes/unix/lib/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.xml", + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll", + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.xml", + "system.runtime.intrinsics.experimental.4.7.0-preview3.19551.4.nupkg.sha512", + "system.runtime.intrinsics.experimental.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.AccessControl/4.7.0-preview3.19551.4": { + "sha512": "TY/z9Ng3PykLL4pgMiYlX+bJrOAz0unrmKn2nbnUBkWOq8UujFcu1ZM3nxA1HXTM4+QaSYdnLnskXgzbMwFz5g==", + "type": "package", + "path": "system.security.accesscontrol/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.4.7.0-preview3.19551.4.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Permissions/4.7.0-preview3.19551.4": { + "sha512": "m1FHbXBFdR+zRJXNrjvdybG1Bss0vwUuocZiQG0LqfoTcPD3Mjf7HPOpXnvsspHtMEyBgFLmGtQ62IFFBXzCyQ==", + "type": "package", + "path": "system.security.permissions/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/netcoreapp3.0/System.Security.Permissions.dll", + "lib/netcoreapp3.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/netcoreapp3.0/System.Security.Permissions.dll", + "ref/netcoreapp3.0/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.4.7.0-preview3.19551.4.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.7.0-preview3.19551.4": { + "sha512": "u+UxjLk5fR2ysJ6RukfzGMeRfFs67E9d1Uk1fDyg/GT7o9TbIkLHH+fVElQdNqLyyeU3KkxCiowfNbif81kCnQ==", + "type": "package", + "path": "system.security.principal.windows/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.7.0-preview3.19551.4.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Windows.Extensions/4.7.0-preview3.19551.4": { + "sha512": "V9enFEcyBw08pcJZ5+6GAc8lhLQF+4ciyZaRKwXapkdqWlrNSVdl9fWrnSFQd0QnrTT+wM0gUXMfIxkPH6pYoQ==", + "type": "package", + "path": "system.windows.extensions/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.0/System.Windows.Extensions.dll", + "lib/netcoreapp3.0/System.Windows.Extensions.xml", + "ref/netcoreapp3.0/System.Windows.Extensions.dll", + "ref/netcoreapp3.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml", + "system.windows.extensions.4.7.0-preview3.19551.4.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v3.1": [ + "Microsoft.Diagnostics.Tools.RuntimeClient >= 1.0.4-preview6.19326.1", + "Microsoft.Private.CoreFx.NETCoreApp >= 4.7.0-preview3.19551.4", + "System.Diagnostics.EventLog >= 4.7.0-preview3.19551.4", + "System.Drawing.Common >= 4.7.0-preview3.19551.4", + "System.Runtime.CompilerServices.Unsafe >= 4.7.0-preview3.19551.4", + "System.Runtime.Intrinsics.Experimental >= 4.7.0-preview3.19551.4", + "System.Security.Permissions >= 4.7.0-preview3.19551.4" + ] + }, + "packageFolders": { + "/home/z/Dev/coreclr-sec/.packages": {} + }, + "project": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/Common/test_dependencies/test_dependencies.csproj", + "projectName": "test_dependencies", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/Common/test_dependencies/test_dependencies.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/Common/test_dependencies/obj-linux-x64", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netcoreapp3.1": { + "dependencies": { + "Microsoft.Diagnostics.Tools.RuntimeClient": { + "target": "Package", + "version": "[1.0.4-preview6.19326.1, )" + }, + "Microsoft.Private.CoreFx.NETCoreApp": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Diagnostics.EventLog": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Drawing.Common": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Runtime.CompilerServices.Unsafe": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Runtime.Intrinsics.Experimental": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Security.Permissions": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + } + }, + "imports": [ + "dnxcore50", + "netcoreapp1.1", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x64": { + "#import": [] + }, + "win-arm": { + "#import": [] + }, + "win-arm64": { + "#import": [] + }, + "win-x64": { + "#import": [] + }, + "win-x86": { + "#import": [] + } + } + } +}
\ No newline at end of file diff --git a/tests/src/Common/test_dependencies/obj-linux-x64/test_dependencies.csproj.nuget.cache b/tests/src/Common/test_dependencies/obj-linux-x64/test_dependencies.csproj.nuget.cache new file mode 100644 index 0000000000..7b34eb6554 --- /dev/null +++ b/tests/src/Common/test_dependencies/obj-linux-x64/test_dependencies.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "BRHE0auzxF3BXpUYIt8HRbysFiHVUG0aXlIJuoJtVnTN8mahklFOjbEHKE6Xazzb44ZmdeNlNKnS3sZ8+gwxpg==", + "success": true +}
\ No newline at end of file diff --git a/tests/src/Common/test_dependencies/obj-linux-x64/test_dependencies.csproj.nuget.dgspec.json b/tests/src/Common/test_dependencies/obj-linux-x64/test_dependencies.csproj.nuget.dgspec.json new file mode 100644 index 0000000000..c871622e87 --- /dev/null +++ b/tests/src/Common/test_dependencies/obj-linux-x64/test_dependencies.csproj.nuget.dgspec.json @@ -0,0 +1,94 @@ +{ + "format": 1, + "restore": { + "/home/z/Dev/coreclr-sec/tests/src/Common/test_dependencies/test_dependencies.csproj": {} + }, + "projects": { + "/home/z/Dev/coreclr-sec/tests/src/Common/test_dependencies/test_dependencies.csproj": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/Common/test_dependencies/test_dependencies.csproj", + "projectName": "test_dependencies", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/Common/test_dependencies/test_dependencies.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/Common/test_dependencies/obj-linux-x64", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netcoreapp3.1": { + "dependencies": { + "Microsoft.Diagnostics.Tools.RuntimeClient": { + "target": "Package", + "version": "[1.0.4-preview6.19326.1, )" + }, + "Microsoft.Private.CoreFx.NETCoreApp": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Diagnostics.EventLog": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Drawing.Common": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Runtime.CompilerServices.Unsafe": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Runtime.Intrinsics.Experimental": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Security.Permissions": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + } + }, + "imports": [ + "dnxcore50", + "netcoreapp1.1", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x64": { + "#import": [] + }, + "win-arm": { + "#import": [] + }, + "win-arm64": { + "#import": [] + }, + "win-x64": { + "#import": [] + }, + "win-x86": { + "#import": [] + } + } + } + } +}
\ No newline at end of file diff --git a/tests/src/Common/test_dependencies/obj-linux-x64/test_dependencies.csproj.nuget.g.props b/tests/src/Common/test_dependencies/obj-linux-x64/test_dependencies.csproj.nuget.g.props new file mode 100644 index 0000000000..a9eafdb0ac --- /dev/null +++ b/tests/src/Common/test_dependencies/obj-linux-x64/test_dependencies.csproj.nuget.g.props @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> + <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> + <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> + <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageRoot> + <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageFolders> + <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.4.0</NuGetToolVersion> + </PropertyGroup> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/Common/test_dependencies/obj-linux-x64/test_dependencies.csproj.nuget.g.targets b/tests/src/Common/test_dependencies/obj-linux-x64/test_dependencies.csproj.nuget.g.targets new file mode 100644 index 0000000000..53cfaa19b1 --- /dev/null +++ b/tests/src/Common/test_dependencies/obj-linux-x64/test_dependencies.csproj.nuget.g.targets @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/Common/test_dependencies/obj-linux-x86/project.assets.json b/tests/src/Common/test_dependencies/obj-linux-x86/project.assets.json new file mode 100644 index 0000000000..bddd9f7e18 --- /dev/null +++ b/tests/src/Common/test_dependencies/obj-linux-x86/project.assets.json @@ -0,0 +1,4839 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v3.1": { + "Microsoft.Diagnostics.Tools.RuntimeClient/1.0.4-preview6.19326.1": { + "type": "package", + "compile": { + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.dll": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netcoreapp3.1/Microsoft.CSharp.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.dll": {}, + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.dll": {}, + "ref/netcoreapp3.1/System.AppContext.dll": {}, + "ref/netcoreapp3.1/System.Buffers.dll": {}, + "ref/netcoreapp3.1/System.Collections.Concurrent.dll": {}, + "ref/netcoreapp3.1/System.Collections.Immutable.dll": {}, + "ref/netcoreapp3.1/System.Collections.NonGeneric.dll": {}, + "ref/netcoreapp3.1/System.Collections.Specialized.dll": {}, + "ref/netcoreapp3.1/System.Collections.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Annotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Primitives.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.dll": {}, + "ref/netcoreapp3.1/System.Configuration.dll": {}, + "ref/netcoreapp3.1/System.Console.dll": {}, + "ref/netcoreapp3.1/System.Core.dll": {}, + "ref/netcoreapp3.1/System.Data.Common.dll": {}, + "ref/netcoreapp3.1/System.Data.DataSetExtensions.dll": {}, + "ref/netcoreapp3.1/System.Data.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Contracts.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Debug.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Process.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tools.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tracing.dll": {}, + "ref/netcoreapp3.1/System.Drawing.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Drawing.dll": {}, + "ref/netcoreapp3.1/System.Dynamic.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Calendars.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Globalization.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.Brotli.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Primitives.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.IsolatedStorage.dll": {}, + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.dll": {}, + "ref/netcoreapp3.1/System.IO.Pipes.dll": {}, + "ref/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/netcoreapp3.1/System.IO.dll": {}, + "ref/netcoreapp3.1/System.Linq.Expressions.dll": {}, + "ref/netcoreapp3.1/System.Linq.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Linq.Queryable.dll": {}, + "ref/netcoreapp3.1/System.Linq.dll": {}, + "ref/netcoreapp3.1/System.Memory.dll": {}, + "ref/netcoreapp3.1/System.Net.Http.dll": {}, + "ref/netcoreapp3.1/System.Net.HttpListener.dll": {}, + "ref/netcoreapp3.1/System.Net.Mail.dll": {}, + "ref/netcoreapp3.1/System.Net.NameResolution.dll": {}, + "ref/netcoreapp3.1/System.Net.NetworkInformation.dll": {}, + "ref/netcoreapp3.1/System.Net.Ping.dll": {}, + "ref/netcoreapp3.1/System.Net.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Net.Requests.dll": {}, + "ref/netcoreapp3.1/System.Net.Security.dll": {}, + "ref/netcoreapp3.1/System.Net.ServicePoint.dll": {}, + "ref/netcoreapp3.1/System.Net.Sockets.dll": {}, + "ref/netcoreapp3.1/System.Net.WebClient.dll": {}, + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.dll": {}, + "ref/netcoreapp3.1/System.Net.WebProxy.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.Client.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.dll": {}, + "ref/netcoreapp3.1/System.Net.dll": {}, + "ref/netcoreapp3.1/System.Numerics.Vectors.dll": {}, + "ref/netcoreapp3.1/System.Numerics.dll": {}, + "ref/netcoreapp3.1/System.ObjectModel.dll": {}, + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Metadata.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.dll": {}, + "ref/netcoreapp3.1/System.Resources.Reader.dll": {}, + "ref/netcoreapp3.1/System.Resources.ResourceManager.dll": {}, + "ref/netcoreapp3.1/System.Resources.Writer.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Handles.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Intrinsics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Loader.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Numerics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Security.Claims.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/netcoreapp3.1/System.Security.Principal.dll": {}, + "ref/netcoreapp3.1/System.Security.SecureString.dll": {}, + "ref/netcoreapp3.1/System.Security.dll": {}, + "ref/netcoreapp3.1/System.ServiceModel.Web.dll": {}, + "ref/netcoreapp3.1/System.ServiceProcess.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Text.Encodings.Web.dll": {}, + "ref/netcoreapp3.1/System.Text.Json.dll": {}, + "ref/netcoreapp3.1/System.Text.RegularExpressions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Channels.dll": {}, + "ref/netcoreapp3.1/System.Threading.Overlapped.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.dll": {}, + "ref/netcoreapp3.1/System.Threading.Thread.dll": {}, + "ref/netcoreapp3.1/System.Threading.ThreadPool.dll": {}, + "ref/netcoreapp3.1/System.Threading.Timer.dll": {}, + "ref/netcoreapp3.1/System.Threading.dll": {}, + "ref/netcoreapp3.1/System.Transactions.Local.dll": {}, + "ref/netcoreapp3.1/System.Transactions.dll": {}, + "ref/netcoreapp3.1/System.ValueTuple.dll": {}, + "ref/netcoreapp3.1/System.Web.HttpUtility.dll": {}, + "ref/netcoreapp3.1/System.Web.dll": {}, + "ref/netcoreapp3.1/System.Windows.dll": {}, + "ref/netcoreapp3.1/System.Xml.Linq.dll": {}, + "ref/netcoreapp3.1/System.Xml.ReaderWriter.dll": {}, + "ref/netcoreapp3.1/System.Xml.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Xml.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlSerializer.dll": {}, + "ref/netcoreapp3.1/System.Xml.dll": {}, + "ref/netcoreapp3.1/System.dll": {}, + "ref/netcoreapp3.1/WindowsBase.dll": {}, + "ref/netcoreapp3.1/mscorlib.dll": {}, + "ref/netcoreapp3.1/netstandard.dll": {} + } + }, + "Microsoft.Win32.Registry/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.EventLog/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "Microsoft.Win32.Registry": "4.7.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/System.Diagnostics.EventLog.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "Microsoft.Win32.SystemEvents": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Drawing.Common.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + }, + "System.Runtime.Intrinsics.Experimental/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.AccessControl/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview3.19551.4", + "System.Windows.Extensions": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Windows.Extensions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + } + }, + ".NETCoreApp,Version=v3.1/linux-x86": { + "Microsoft.Diagnostics.Tools.RuntimeClient/1.0.4-preview6.19326.1": { + "type": "package", + "compile": { + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.dll": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netcoreapp3.1/Microsoft.CSharp.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.dll": {}, + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.dll": {}, + "ref/netcoreapp3.1/System.AppContext.dll": {}, + "ref/netcoreapp3.1/System.Buffers.dll": {}, + "ref/netcoreapp3.1/System.Collections.Concurrent.dll": {}, + "ref/netcoreapp3.1/System.Collections.Immutable.dll": {}, + "ref/netcoreapp3.1/System.Collections.NonGeneric.dll": {}, + "ref/netcoreapp3.1/System.Collections.Specialized.dll": {}, + "ref/netcoreapp3.1/System.Collections.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Annotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Primitives.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.dll": {}, + "ref/netcoreapp3.1/System.Configuration.dll": {}, + "ref/netcoreapp3.1/System.Console.dll": {}, + "ref/netcoreapp3.1/System.Core.dll": {}, + "ref/netcoreapp3.1/System.Data.Common.dll": {}, + "ref/netcoreapp3.1/System.Data.DataSetExtensions.dll": {}, + "ref/netcoreapp3.1/System.Data.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Contracts.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Debug.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Process.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tools.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tracing.dll": {}, + "ref/netcoreapp3.1/System.Drawing.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Drawing.dll": {}, + "ref/netcoreapp3.1/System.Dynamic.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Calendars.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Globalization.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.Brotli.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Primitives.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.IsolatedStorage.dll": {}, + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.dll": {}, + "ref/netcoreapp3.1/System.IO.Pipes.dll": {}, + "ref/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/netcoreapp3.1/System.IO.dll": {}, + "ref/netcoreapp3.1/System.Linq.Expressions.dll": {}, + "ref/netcoreapp3.1/System.Linq.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Linq.Queryable.dll": {}, + "ref/netcoreapp3.1/System.Linq.dll": {}, + "ref/netcoreapp3.1/System.Memory.dll": {}, + "ref/netcoreapp3.1/System.Net.Http.dll": {}, + "ref/netcoreapp3.1/System.Net.HttpListener.dll": {}, + "ref/netcoreapp3.1/System.Net.Mail.dll": {}, + "ref/netcoreapp3.1/System.Net.NameResolution.dll": {}, + "ref/netcoreapp3.1/System.Net.NetworkInformation.dll": {}, + "ref/netcoreapp3.1/System.Net.Ping.dll": {}, + "ref/netcoreapp3.1/System.Net.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Net.Requests.dll": {}, + "ref/netcoreapp3.1/System.Net.Security.dll": {}, + "ref/netcoreapp3.1/System.Net.ServicePoint.dll": {}, + "ref/netcoreapp3.1/System.Net.Sockets.dll": {}, + "ref/netcoreapp3.1/System.Net.WebClient.dll": {}, + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.dll": {}, + "ref/netcoreapp3.1/System.Net.WebProxy.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.Client.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.dll": {}, + "ref/netcoreapp3.1/System.Net.dll": {}, + "ref/netcoreapp3.1/System.Numerics.Vectors.dll": {}, + "ref/netcoreapp3.1/System.Numerics.dll": {}, + "ref/netcoreapp3.1/System.ObjectModel.dll": {}, + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Metadata.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.dll": {}, + "ref/netcoreapp3.1/System.Resources.Reader.dll": {}, + "ref/netcoreapp3.1/System.Resources.ResourceManager.dll": {}, + "ref/netcoreapp3.1/System.Resources.Writer.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Handles.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Intrinsics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Loader.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Numerics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Security.Claims.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/netcoreapp3.1/System.Security.Principal.dll": {}, + "ref/netcoreapp3.1/System.Security.SecureString.dll": {}, + "ref/netcoreapp3.1/System.Security.dll": {}, + "ref/netcoreapp3.1/System.ServiceModel.Web.dll": {}, + "ref/netcoreapp3.1/System.ServiceProcess.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Text.Encodings.Web.dll": {}, + "ref/netcoreapp3.1/System.Text.Json.dll": {}, + "ref/netcoreapp3.1/System.Text.RegularExpressions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Channels.dll": {}, + "ref/netcoreapp3.1/System.Threading.Overlapped.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.dll": {}, + "ref/netcoreapp3.1/System.Threading.Thread.dll": {}, + "ref/netcoreapp3.1/System.Threading.ThreadPool.dll": {}, + "ref/netcoreapp3.1/System.Threading.Timer.dll": {}, + "ref/netcoreapp3.1/System.Threading.dll": {}, + "ref/netcoreapp3.1/System.Transactions.Local.dll": {}, + "ref/netcoreapp3.1/System.Transactions.dll": {}, + "ref/netcoreapp3.1/System.ValueTuple.dll": {}, + "ref/netcoreapp3.1/System.Web.HttpUtility.dll": {}, + "ref/netcoreapp3.1/System.Web.dll": {}, + "ref/netcoreapp3.1/System.Windows.dll": {}, + "ref/netcoreapp3.1/System.Xml.Linq.dll": {}, + "ref/netcoreapp3.1/System.Xml.ReaderWriter.dll": {}, + "ref/netcoreapp3.1/System.Xml.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Xml.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlSerializer.dll": {}, + "ref/netcoreapp3.1/System.Xml.dll": {}, + "ref/netcoreapp3.1/System.dll": {}, + "ref/netcoreapp3.1/WindowsBase.dll": {}, + "ref/netcoreapp3.1/mscorlib.dll": {}, + "ref/netcoreapp3.1/netstandard.dll": {} + } + }, + "Microsoft.Win32.Registry/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + } + }, + "Microsoft.Win32.SystemEvents/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} + } + }, + "System.Diagnostics.EventLog/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "Microsoft.Win32.Registry": "4.7.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/System.Diagnostics.EventLog.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {} + } + }, + "System.Drawing.Common/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "Microsoft.Win32.SystemEvents": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Drawing.Common.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + }, + "System.Runtime.Intrinsics.Experimental/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll": {} + } + }, + "System.Security.AccessControl/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + } + }, + "System.Security.Permissions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview3.19551.4", + "System.Windows.Extensions": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {} + } + }, + "System.Windows.Extensions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": {} + } + } + }, + ".NETCoreApp,Version=v3.1/win-arm": { + "Microsoft.Diagnostics.Tools.RuntimeClient/1.0.4-preview6.19326.1": { + "type": "package", + "compile": { + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.dll": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "runtime.win-arm.Microsoft.Private.CoreFx.NETCoreApp": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.1/Microsoft.CSharp.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.dll": {}, + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.dll": {}, + "ref/netcoreapp3.1/System.AppContext.dll": {}, + "ref/netcoreapp3.1/System.Buffers.dll": {}, + "ref/netcoreapp3.1/System.Collections.Concurrent.dll": {}, + "ref/netcoreapp3.1/System.Collections.Immutable.dll": {}, + "ref/netcoreapp3.1/System.Collections.NonGeneric.dll": {}, + "ref/netcoreapp3.1/System.Collections.Specialized.dll": {}, + "ref/netcoreapp3.1/System.Collections.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Annotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Primitives.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.dll": {}, + "ref/netcoreapp3.1/System.Configuration.dll": {}, + "ref/netcoreapp3.1/System.Console.dll": {}, + "ref/netcoreapp3.1/System.Core.dll": {}, + "ref/netcoreapp3.1/System.Data.Common.dll": {}, + "ref/netcoreapp3.1/System.Data.DataSetExtensions.dll": {}, + "ref/netcoreapp3.1/System.Data.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Contracts.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Debug.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Process.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tools.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tracing.dll": {}, + "ref/netcoreapp3.1/System.Drawing.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Drawing.dll": {}, + "ref/netcoreapp3.1/System.Dynamic.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Calendars.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Globalization.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.Brotli.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Primitives.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.IsolatedStorage.dll": {}, + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.dll": {}, + "ref/netcoreapp3.1/System.IO.Pipes.dll": {}, + "ref/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/netcoreapp3.1/System.IO.dll": {}, + "ref/netcoreapp3.1/System.Linq.Expressions.dll": {}, + "ref/netcoreapp3.1/System.Linq.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Linq.Queryable.dll": {}, + "ref/netcoreapp3.1/System.Linq.dll": {}, + "ref/netcoreapp3.1/System.Memory.dll": {}, + "ref/netcoreapp3.1/System.Net.Http.dll": {}, + "ref/netcoreapp3.1/System.Net.HttpListener.dll": {}, + "ref/netcoreapp3.1/System.Net.Mail.dll": {}, + "ref/netcoreapp3.1/System.Net.NameResolution.dll": {}, + "ref/netcoreapp3.1/System.Net.NetworkInformation.dll": {}, + "ref/netcoreapp3.1/System.Net.Ping.dll": {}, + "ref/netcoreapp3.1/System.Net.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Net.Requests.dll": {}, + "ref/netcoreapp3.1/System.Net.Security.dll": {}, + "ref/netcoreapp3.1/System.Net.ServicePoint.dll": {}, + "ref/netcoreapp3.1/System.Net.Sockets.dll": {}, + "ref/netcoreapp3.1/System.Net.WebClient.dll": {}, + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.dll": {}, + "ref/netcoreapp3.1/System.Net.WebProxy.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.Client.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.dll": {}, + "ref/netcoreapp3.1/System.Net.dll": {}, + "ref/netcoreapp3.1/System.Numerics.Vectors.dll": {}, + "ref/netcoreapp3.1/System.Numerics.dll": {}, + "ref/netcoreapp3.1/System.ObjectModel.dll": {}, + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Metadata.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.dll": {}, + "ref/netcoreapp3.1/System.Resources.Reader.dll": {}, + "ref/netcoreapp3.1/System.Resources.ResourceManager.dll": {}, + "ref/netcoreapp3.1/System.Resources.Writer.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Handles.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Intrinsics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Loader.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Numerics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Security.Claims.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/netcoreapp3.1/System.Security.Principal.dll": {}, + "ref/netcoreapp3.1/System.Security.SecureString.dll": {}, + "ref/netcoreapp3.1/System.Security.dll": {}, + "ref/netcoreapp3.1/System.ServiceModel.Web.dll": {}, + "ref/netcoreapp3.1/System.ServiceProcess.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Text.Encodings.Web.dll": {}, + "ref/netcoreapp3.1/System.Text.Json.dll": {}, + "ref/netcoreapp3.1/System.Text.RegularExpressions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Channels.dll": {}, + "ref/netcoreapp3.1/System.Threading.Overlapped.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.dll": {}, + "ref/netcoreapp3.1/System.Threading.Thread.dll": {}, + "ref/netcoreapp3.1/System.Threading.ThreadPool.dll": {}, + "ref/netcoreapp3.1/System.Threading.Timer.dll": {}, + "ref/netcoreapp3.1/System.Threading.dll": {}, + "ref/netcoreapp3.1/System.Transactions.Local.dll": {}, + "ref/netcoreapp3.1/System.Transactions.dll": {}, + "ref/netcoreapp3.1/System.ValueTuple.dll": {}, + "ref/netcoreapp3.1/System.Web.HttpUtility.dll": {}, + "ref/netcoreapp3.1/System.Web.dll": {}, + "ref/netcoreapp3.1/System.Windows.dll": {}, + "ref/netcoreapp3.1/System.Xml.Linq.dll": {}, + "ref/netcoreapp3.1/System.Xml.ReaderWriter.dll": {}, + "ref/netcoreapp3.1/System.Xml.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Xml.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlSerializer.dll": {}, + "ref/netcoreapp3.1/System.Xml.dll": {}, + "ref/netcoreapp3.1/System.dll": {}, + "ref/netcoreapp3.1/WindowsBase.dll": {}, + "ref/netcoreapp3.1/mscorlib.dll": {}, + "ref/netcoreapp3.1/netstandard.dll": {} + } + }, + "Microsoft.Win32.Registry/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + } + }, + "Microsoft.Win32.SystemEvents/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {} + } + }, + "runtime.win-arm.Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.CSharp.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.VisualBasic.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.Win32.Primitives.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.Win32.Registry.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.AppContext.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Buffers.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.Concurrent.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.Immutable.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.NonGeneric.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.Specialized.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.Annotations.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.Primitives.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Configuration.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Console.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Core.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Data.Common.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Data.DataSetExtensions.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Data.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Contracts.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Debug.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Process.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.StackTrace.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Tools.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.TraceSource.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Tracing.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Drawing.Primitives.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Drawing.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Dynamic.Runtime.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Globalization.Calendars.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Globalization.Extensions.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Globalization.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Compression.Brotli.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Compression.FileSystem.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Compression.ZipFile.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Compression.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.IsolatedStorage.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Pipes.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Linq.Expressions.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Linq.Parallel.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Linq.Queryable.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Linq.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Memory.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Http.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.HttpListener.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Mail.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.NameResolution.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.NetworkInformation.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Ping.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Primitives.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Requests.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Security.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.ServicePoint.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Sockets.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebClient.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebHeaderCollection.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebProxy.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebSockets.Client.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebSockets.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Numerics.Vectors.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Numerics.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.ObjectModel.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Private.DataContractSerialization.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Private.Uri.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Private.Xml.Linq.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Private.Xml.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.DispatchProxy.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Emit.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Extensions.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Metadata.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Primitives.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.TypeExtensions.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Resources.Reader.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Resources.ResourceManager.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Resources.Writer.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Extensions.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Handles.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.InteropServices.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Intrinsics.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Loader.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Numerics.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.Json.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.AccessControl.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Claims.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Cng.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Csp.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Principal.Windows.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Principal.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.SecureString.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.ServiceModel.Web.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.ServiceProcess.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Encoding.Extensions.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Encoding.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Encodings.Web.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Json.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.RegularExpressions.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Channels.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Overlapped.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Tasks.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Thread.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.ThreadPool.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Timer.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Transactions.Local.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Transactions.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.ValueTuple.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Web.HttpUtility.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Web.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Windows.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.Linq.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.ReaderWriter.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.Serialization.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XDocument.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XPath.XDocument.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XPath.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XmlDocument.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XmlSerializer.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/System.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/WindowsBase.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/mscorlib.dll": {}, + "runtimes/win-arm/lib/netcoreapp3.1/netstandard.dll": {} + }, + "native": { + "runtimes/win-arm/native/clrcompression.dll": {}, + "runtimes/win-arm/native/clrcompression.pdb": {} + } + }, + "System.Diagnostics.EventLog/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "Microsoft.Win32.Registry": "4.7.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/System.Diagnostics.EventLog.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {} + } + }, + "System.Drawing.Common/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "Microsoft.Win32.SystemEvents": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Drawing.Common.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + }, + "System.Runtime.Intrinsics.Experimental/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll": {} + } + }, + "System.Security.AccessControl/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {} + } + }, + "System.Security.Permissions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview3.19551.4", + "System.Windows.Extensions": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {} + } + }, + "System.Windows.Extensions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {} + } + } + }, + ".NETCoreApp,Version=v3.1/win-arm64": { + "Microsoft.Diagnostics.Tools.RuntimeClient/1.0.4-preview6.19326.1": { + "type": "package", + "compile": { + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.dll": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "runtime.win-arm64.Microsoft.Private.CoreFx.NETCoreApp": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.1/Microsoft.CSharp.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.dll": {}, + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.dll": {}, + "ref/netcoreapp3.1/System.AppContext.dll": {}, + "ref/netcoreapp3.1/System.Buffers.dll": {}, + "ref/netcoreapp3.1/System.Collections.Concurrent.dll": {}, + "ref/netcoreapp3.1/System.Collections.Immutable.dll": {}, + "ref/netcoreapp3.1/System.Collections.NonGeneric.dll": {}, + "ref/netcoreapp3.1/System.Collections.Specialized.dll": {}, + "ref/netcoreapp3.1/System.Collections.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Annotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Primitives.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.dll": {}, + "ref/netcoreapp3.1/System.Configuration.dll": {}, + "ref/netcoreapp3.1/System.Console.dll": {}, + "ref/netcoreapp3.1/System.Core.dll": {}, + "ref/netcoreapp3.1/System.Data.Common.dll": {}, + "ref/netcoreapp3.1/System.Data.DataSetExtensions.dll": {}, + "ref/netcoreapp3.1/System.Data.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Contracts.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Debug.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Process.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tools.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tracing.dll": {}, + "ref/netcoreapp3.1/System.Drawing.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Drawing.dll": {}, + "ref/netcoreapp3.1/System.Dynamic.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Calendars.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Globalization.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.Brotli.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Primitives.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.IsolatedStorage.dll": {}, + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.dll": {}, + "ref/netcoreapp3.1/System.IO.Pipes.dll": {}, + "ref/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/netcoreapp3.1/System.IO.dll": {}, + "ref/netcoreapp3.1/System.Linq.Expressions.dll": {}, + "ref/netcoreapp3.1/System.Linq.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Linq.Queryable.dll": {}, + "ref/netcoreapp3.1/System.Linq.dll": {}, + "ref/netcoreapp3.1/System.Memory.dll": {}, + "ref/netcoreapp3.1/System.Net.Http.dll": {}, + "ref/netcoreapp3.1/System.Net.HttpListener.dll": {}, + "ref/netcoreapp3.1/System.Net.Mail.dll": {}, + "ref/netcoreapp3.1/System.Net.NameResolution.dll": {}, + "ref/netcoreapp3.1/System.Net.NetworkInformation.dll": {}, + "ref/netcoreapp3.1/System.Net.Ping.dll": {}, + "ref/netcoreapp3.1/System.Net.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Net.Requests.dll": {}, + "ref/netcoreapp3.1/System.Net.Security.dll": {}, + "ref/netcoreapp3.1/System.Net.ServicePoint.dll": {}, + "ref/netcoreapp3.1/System.Net.Sockets.dll": {}, + "ref/netcoreapp3.1/System.Net.WebClient.dll": {}, + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.dll": {}, + "ref/netcoreapp3.1/System.Net.WebProxy.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.Client.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.dll": {}, + "ref/netcoreapp3.1/System.Net.dll": {}, + "ref/netcoreapp3.1/System.Numerics.Vectors.dll": {}, + "ref/netcoreapp3.1/System.Numerics.dll": {}, + "ref/netcoreapp3.1/System.ObjectModel.dll": {}, + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Metadata.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.dll": {}, + "ref/netcoreapp3.1/System.Resources.Reader.dll": {}, + "ref/netcoreapp3.1/System.Resources.ResourceManager.dll": {}, + "ref/netcoreapp3.1/System.Resources.Writer.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Handles.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Intrinsics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Loader.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Numerics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Security.Claims.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/netcoreapp3.1/System.Security.Principal.dll": {}, + "ref/netcoreapp3.1/System.Security.SecureString.dll": {}, + "ref/netcoreapp3.1/System.Security.dll": {}, + "ref/netcoreapp3.1/System.ServiceModel.Web.dll": {}, + "ref/netcoreapp3.1/System.ServiceProcess.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Text.Encodings.Web.dll": {}, + "ref/netcoreapp3.1/System.Text.Json.dll": {}, + "ref/netcoreapp3.1/System.Text.RegularExpressions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Channels.dll": {}, + "ref/netcoreapp3.1/System.Threading.Overlapped.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.dll": {}, + "ref/netcoreapp3.1/System.Threading.Thread.dll": {}, + "ref/netcoreapp3.1/System.Threading.ThreadPool.dll": {}, + "ref/netcoreapp3.1/System.Threading.Timer.dll": {}, + "ref/netcoreapp3.1/System.Threading.dll": {}, + "ref/netcoreapp3.1/System.Transactions.Local.dll": {}, + "ref/netcoreapp3.1/System.Transactions.dll": {}, + "ref/netcoreapp3.1/System.ValueTuple.dll": {}, + "ref/netcoreapp3.1/System.Web.HttpUtility.dll": {}, + "ref/netcoreapp3.1/System.Web.dll": {}, + "ref/netcoreapp3.1/System.Windows.dll": {}, + "ref/netcoreapp3.1/System.Xml.Linq.dll": {}, + "ref/netcoreapp3.1/System.Xml.ReaderWriter.dll": {}, + "ref/netcoreapp3.1/System.Xml.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Xml.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlSerializer.dll": {}, + "ref/netcoreapp3.1/System.Xml.dll": {}, + "ref/netcoreapp3.1/System.dll": {}, + "ref/netcoreapp3.1/WindowsBase.dll": {}, + "ref/netcoreapp3.1/mscorlib.dll": {}, + "ref/netcoreapp3.1/netstandard.dll": {} + } + }, + "Microsoft.Win32.Registry/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + } + }, + "Microsoft.Win32.SystemEvents/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {} + } + }, + "runtime.win-arm64.Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.CSharp.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.VisualBasic.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.Win32.Primitives.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.Win32.Registry.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.AppContext.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Buffers.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.Concurrent.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.Immutable.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.NonGeneric.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.Specialized.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.Annotations.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.Primitives.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Configuration.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Console.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Core.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Data.Common.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Data.DataSetExtensions.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Data.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Contracts.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Debug.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Process.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.StackTrace.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Tools.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.TraceSource.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Tracing.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Drawing.Primitives.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Drawing.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Dynamic.Runtime.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Globalization.Calendars.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Globalization.Extensions.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Globalization.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Compression.Brotli.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Compression.FileSystem.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Compression.ZipFile.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Compression.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.IsolatedStorage.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Pipes.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Linq.Expressions.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Linq.Parallel.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Linq.Queryable.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Linq.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Memory.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Http.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.HttpListener.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Mail.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.NameResolution.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.NetworkInformation.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Ping.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Primitives.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Requests.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Security.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.ServicePoint.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Sockets.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebClient.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebHeaderCollection.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebProxy.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebSockets.Client.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebSockets.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Numerics.Vectors.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Numerics.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.ObjectModel.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Private.DataContractSerialization.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Private.Uri.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Private.Xml.Linq.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Private.Xml.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.DispatchProxy.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Emit.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Extensions.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Metadata.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Primitives.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.TypeExtensions.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Resources.Reader.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Resources.ResourceManager.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Resources.Writer.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Extensions.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Handles.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.InteropServices.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Intrinsics.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Loader.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Numerics.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.Json.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.AccessControl.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Claims.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Cng.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Csp.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Principal.Windows.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Principal.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.SecureString.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.ServiceModel.Web.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.ServiceProcess.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Encoding.Extensions.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Encoding.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Encodings.Web.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Json.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.RegularExpressions.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Channels.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Overlapped.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Tasks.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Thread.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.ThreadPool.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Timer.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Transactions.Local.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Transactions.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.ValueTuple.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Web.HttpUtility.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Web.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Windows.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.Linq.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.ReaderWriter.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.Serialization.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XDocument.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XPath.XDocument.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XPath.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XmlDocument.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XmlSerializer.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/System.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/WindowsBase.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/mscorlib.dll": {}, + "runtimes/win-arm64/lib/netcoreapp3.1/netstandard.dll": {} + }, + "native": { + "runtimes/win-arm64/native/clrcompression.dll": {}, + "runtimes/win-arm64/native/clrcompression.pdb": {} + } + }, + "System.Diagnostics.EventLog/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "Microsoft.Win32.Registry": "4.7.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/System.Diagnostics.EventLog.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {} + } + }, + "System.Drawing.Common/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "Microsoft.Win32.SystemEvents": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Drawing.Common.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + }, + "System.Runtime.Intrinsics.Experimental/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll": {} + } + }, + "System.Security.AccessControl/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {} + } + }, + "System.Security.Permissions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview3.19551.4", + "System.Windows.Extensions": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {} + } + }, + "System.Windows.Extensions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {} + } + } + }, + ".NETCoreApp,Version=v3.1/win-x64": { + "Microsoft.Diagnostics.Tools.RuntimeClient/1.0.4-preview6.19326.1": { + "type": "package", + "compile": { + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.dll": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "runtime.win-x64.Microsoft.Private.CoreFx.NETCoreApp": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.1/Microsoft.CSharp.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.dll": {}, + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.dll": {}, + "ref/netcoreapp3.1/System.AppContext.dll": {}, + "ref/netcoreapp3.1/System.Buffers.dll": {}, + "ref/netcoreapp3.1/System.Collections.Concurrent.dll": {}, + "ref/netcoreapp3.1/System.Collections.Immutable.dll": {}, + "ref/netcoreapp3.1/System.Collections.NonGeneric.dll": {}, + "ref/netcoreapp3.1/System.Collections.Specialized.dll": {}, + "ref/netcoreapp3.1/System.Collections.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Annotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Primitives.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.dll": {}, + "ref/netcoreapp3.1/System.Configuration.dll": {}, + "ref/netcoreapp3.1/System.Console.dll": {}, + "ref/netcoreapp3.1/System.Core.dll": {}, + "ref/netcoreapp3.1/System.Data.Common.dll": {}, + "ref/netcoreapp3.1/System.Data.DataSetExtensions.dll": {}, + "ref/netcoreapp3.1/System.Data.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Contracts.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Debug.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Process.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tools.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tracing.dll": {}, + "ref/netcoreapp3.1/System.Drawing.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Drawing.dll": {}, + "ref/netcoreapp3.1/System.Dynamic.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Calendars.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Globalization.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.Brotli.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Primitives.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.IsolatedStorage.dll": {}, + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.dll": {}, + "ref/netcoreapp3.1/System.IO.Pipes.dll": {}, + "ref/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/netcoreapp3.1/System.IO.dll": {}, + "ref/netcoreapp3.1/System.Linq.Expressions.dll": {}, + "ref/netcoreapp3.1/System.Linq.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Linq.Queryable.dll": {}, + "ref/netcoreapp3.1/System.Linq.dll": {}, + "ref/netcoreapp3.1/System.Memory.dll": {}, + "ref/netcoreapp3.1/System.Net.Http.dll": {}, + "ref/netcoreapp3.1/System.Net.HttpListener.dll": {}, + "ref/netcoreapp3.1/System.Net.Mail.dll": {}, + "ref/netcoreapp3.1/System.Net.NameResolution.dll": {}, + "ref/netcoreapp3.1/System.Net.NetworkInformation.dll": {}, + "ref/netcoreapp3.1/System.Net.Ping.dll": {}, + "ref/netcoreapp3.1/System.Net.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Net.Requests.dll": {}, + "ref/netcoreapp3.1/System.Net.Security.dll": {}, + "ref/netcoreapp3.1/System.Net.ServicePoint.dll": {}, + "ref/netcoreapp3.1/System.Net.Sockets.dll": {}, + "ref/netcoreapp3.1/System.Net.WebClient.dll": {}, + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.dll": {}, + "ref/netcoreapp3.1/System.Net.WebProxy.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.Client.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.dll": {}, + "ref/netcoreapp3.1/System.Net.dll": {}, + "ref/netcoreapp3.1/System.Numerics.Vectors.dll": {}, + "ref/netcoreapp3.1/System.Numerics.dll": {}, + "ref/netcoreapp3.1/System.ObjectModel.dll": {}, + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Metadata.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.dll": {}, + "ref/netcoreapp3.1/System.Resources.Reader.dll": {}, + "ref/netcoreapp3.1/System.Resources.ResourceManager.dll": {}, + "ref/netcoreapp3.1/System.Resources.Writer.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Handles.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Intrinsics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Loader.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Numerics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Security.Claims.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/netcoreapp3.1/System.Security.Principal.dll": {}, + "ref/netcoreapp3.1/System.Security.SecureString.dll": {}, + "ref/netcoreapp3.1/System.Security.dll": {}, + "ref/netcoreapp3.1/System.ServiceModel.Web.dll": {}, + "ref/netcoreapp3.1/System.ServiceProcess.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Text.Encodings.Web.dll": {}, + "ref/netcoreapp3.1/System.Text.Json.dll": {}, + "ref/netcoreapp3.1/System.Text.RegularExpressions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Channels.dll": {}, + "ref/netcoreapp3.1/System.Threading.Overlapped.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.dll": {}, + "ref/netcoreapp3.1/System.Threading.Thread.dll": {}, + "ref/netcoreapp3.1/System.Threading.ThreadPool.dll": {}, + "ref/netcoreapp3.1/System.Threading.Timer.dll": {}, + "ref/netcoreapp3.1/System.Threading.dll": {}, + "ref/netcoreapp3.1/System.Transactions.Local.dll": {}, + "ref/netcoreapp3.1/System.Transactions.dll": {}, + "ref/netcoreapp3.1/System.ValueTuple.dll": {}, + "ref/netcoreapp3.1/System.Web.HttpUtility.dll": {}, + "ref/netcoreapp3.1/System.Web.dll": {}, + "ref/netcoreapp3.1/System.Windows.dll": {}, + "ref/netcoreapp3.1/System.Xml.Linq.dll": {}, + "ref/netcoreapp3.1/System.Xml.ReaderWriter.dll": {}, + "ref/netcoreapp3.1/System.Xml.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Xml.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlSerializer.dll": {}, + "ref/netcoreapp3.1/System.Xml.dll": {}, + "ref/netcoreapp3.1/System.dll": {}, + "ref/netcoreapp3.1/WindowsBase.dll": {}, + "ref/netcoreapp3.1/mscorlib.dll": {}, + "ref/netcoreapp3.1/netstandard.dll": {} + } + }, + "Microsoft.Win32.Registry/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + } + }, + "Microsoft.Win32.SystemEvents/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {} + } + }, + "runtime.win-x64.Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.CSharp.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.Win32.Primitives.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.Win32.Registry.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.AppContext.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Buffers.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.Concurrent.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.Immutable.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.NonGeneric.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.Specialized.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.Annotations.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.Primitives.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Configuration.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Console.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Core.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Data.Common.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Data.DataSetExtensions.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Data.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Contracts.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Debug.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Process.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.StackTrace.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Tools.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.TraceSource.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Tracing.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Drawing.Primitives.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Drawing.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Dynamic.Runtime.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Globalization.Calendars.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Globalization.Extensions.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Globalization.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Compression.Brotli.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Compression.FileSystem.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Compression.ZipFile.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Compression.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.IsolatedStorage.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Pipes.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Linq.Expressions.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Linq.Parallel.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Linq.Queryable.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Linq.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Memory.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Http.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.HttpListener.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Mail.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.NameResolution.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.NetworkInformation.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Ping.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Primitives.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Requests.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Security.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.ServicePoint.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Sockets.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebClient.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebHeaderCollection.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebProxy.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebSockets.Client.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebSockets.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Numerics.Vectors.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Numerics.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.ObjectModel.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Private.DataContractSerialization.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Private.Uri.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Private.Xml.Linq.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Private.Xml.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.DispatchProxy.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Emit.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Extensions.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Metadata.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Primitives.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.TypeExtensions.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Resources.Reader.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Resources.ResourceManager.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Resources.Writer.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Extensions.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Handles.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Intrinsics.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Loader.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Numerics.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Json.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.AccessControl.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Claims.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Cng.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Csp.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Principal.Windows.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Principal.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.SecureString.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.ServiceModel.Web.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.ServiceProcess.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Encoding.Extensions.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Encoding.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Encodings.Web.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Json.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.RegularExpressions.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Channels.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Overlapped.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Tasks.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Thread.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.ThreadPool.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Timer.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Transactions.Local.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Transactions.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.ValueTuple.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Web.HttpUtility.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Web.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Windows.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.Linq.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.ReaderWriter.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.Serialization.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XDocument.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XPath.XDocument.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XPath.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XmlDocument.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XmlSerializer.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/System.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/WindowsBase.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/mscorlib.dll": {}, + "runtimes/win-x64/lib/netcoreapp3.1/netstandard.dll": {} + }, + "native": { + "runtimes/win-x64/native/clrcompression.dll": {}, + "runtimes/win-x64/native/clrcompression.pdb": {} + } + }, + "System.Diagnostics.EventLog/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "Microsoft.Win32.Registry": "4.7.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/System.Diagnostics.EventLog.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {} + } + }, + "System.Drawing.Common/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "Microsoft.Win32.SystemEvents": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Drawing.Common.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + }, + "System.Runtime.Intrinsics.Experimental/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll": {} + } + }, + "System.Security.AccessControl/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {} + } + }, + "System.Security.Permissions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview3.19551.4", + "System.Windows.Extensions": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {} + } + }, + "System.Windows.Extensions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {} + } + } + }, + ".NETCoreApp,Version=v3.1/win-x86": { + "Microsoft.Diagnostics.Tools.RuntimeClient/1.0.4-preview6.19326.1": { + "type": "package", + "compile": { + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.dll": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "runtime.win-x86.Microsoft.Private.CoreFx.NETCoreApp": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.1/Microsoft.CSharp.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.dll": {}, + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.dll": {}, + "ref/netcoreapp3.1/System.AppContext.dll": {}, + "ref/netcoreapp3.1/System.Buffers.dll": {}, + "ref/netcoreapp3.1/System.Collections.Concurrent.dll": {}, + "ref/netcoreapp3.1/System.Collections.Immutable.dll": {}, + "ref/netcoreapp3.1/System.Collections.NonGeneric.dll": {}, + "ref/netcoreapp3.1/System.Collections.Specialized.dll": {}, + "ref/netcoreapp3.1/System.Collections.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Annotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Primitives.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.dll": {}, + "ref/netcoreapp3.1/System.Configuration.dll": {}, + "ref/netcoreapp3.1/System.Console.dll": {}, + "ref/netcoreapp3.1/System.Core.dll": {}, + "ref/netcoreapp3.1/System.Data.Common.dll": {}, + "ref/netcoreapp3.1/System.Data.DataSetExtensions.dll": {}, + "ref/netcoreapp3.1/System.Data.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Contracts.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Debug.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Process.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tools.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tracing.dll": {}, + "ref/netcoreapp3.1/System.Drawing.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Drawing.dll": {}, + "ref/netcoreapp3.1/System.Dynamic.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Calendars.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Globalization.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.Brotli.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Primitives.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.IsolatedStorage.dll": {}, + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.dll": {}, + "ref/netcoreapp3.1/System.IO.Pipes.dll": {}, + "ref/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/netcoreapp3.1/System.IO.dll": {}, + "ref/netcoreapp3.1/System.Linq.Expressions.dll": {}, + "ref/netcoreapp3.1/System.Linq.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Linq.Queryable.dll": {}, + "ref/netcoreapp3.1/System.Linq.dll": {}, + "ref/netcoreapp3.1/System.Memory.dll": {}, + "ref/netcoreapp3.1/System.Net.Http.dll": {}, + "ref/netcoreapp3.1/System.Net.HttpListener.dll": {}, + "ref/netcoreapp3.1/System.Net.Mail.dll": {}, + "ref/netcoreapp3.1/System.Net.NameResolution.dll": {}, + "ref/netcoreapp3.1/System.Net.NetworkInformation.dll": {}, + "ref/netcoreapp3.1/System.Net.Ping.dll": {}, + "ref/netcoreapp3.1/System.Net.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Net.Requests.dll": {}, + "ref/netcoreapp3.1/System.Net.Security.dll": {}, + "ref/netcoreapp3.1/System.Net.ServicePoint.dll": {}, + "ref/netcoreapp3.1/System.Net.Sockets.dll": {}, + "ref/netcoreapp3.1/System.Net.WebClient.dll": {}, + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.dll": {}, + "ref/netcoreapp3.1/System.Net.WebProxy.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.Client.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.dll": {}, + "ref/netcoreapp3.1/System.Net.dll": {}, + "ref/netcoreapp3.1/System.Numerics.Vectors.dll": {}, + "ref/netcoreapp3.1/System.Numerics.dll": {}, + "ref/netcoreapp3.1/System.ObjectModel.dll": {}, + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Metadata.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.dll": {}, + "ref/netcoreapp3.1/System.Resources.Reader.dll": {}, + "ref/netcoreapp3.1/System.Resources.ResourceManager.dll": {}, + "ref/netcoreapp3.1/System.Resources.Writer.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Handles.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Intrinsics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Loader.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Numerics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Security.Claims.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/netcoreapp3.1/System.Security.Principal.dll": {}, + "ref/netcoreapp3.1/System.Security.SecureString.dll": {}, + "ref/netcoreapp3.1/System.Security.dll": {}, + "ref/netcoreapp3.1/System.ServiceModel.Web.dll": {}, + "ref/netcoreapp3.1/System.ServiceProcess.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Text.Encodings.Web.dll": {}, + "ref/netcoreapp3.1/System.Text.Json.dll": {}, + "ref/netcoreapp3.1/System.Text.RegularExpressions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Channels.dll": {}, + "ref/netcoreapp3.1/System.Threading.Overlapped.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.dll": {}, + "ref/netcoreapp3.1/System.Threading.Thread.dll": {}, + "ref/netcoreapp3.1/System.Threading.ThreadPool.dll": {}, + "ref/netcoreapp3.1/System.Threading.Timer.dll": {}, + "ref/netcoreapp3.1/System.Threading.dll": {}, + "ref/netcoreapp3.1/System.Transactions.Local.dll": {}, + "ref/netcoreapp3.1/System.Transactions.dll": {}, + "ref/netcoreapp3.1/System.ValueTuple.dll": {}, + "ref/netcoreapp3.1/System.Web.HttpUtility.dll": {}, + "ref/netcoreapp3.1/System.Web.dll": {}, + "ref/netcoreapp3.1/System.Windows.dll": {}, + "ref/netcoreapp3.1/System.Xml.Linq.dll": {}, + "ref/netcoreapp3.1/System.Xml.ReaderWriter.dll": {}, + "ref/netcoreapp3.1/System.Xml.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Xml.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlSerializer.dll": {}, + "ref/netcoreapp3.1/System.Xml.dll": {}, + "ref/netcoreapp3.1/System.dll": {}, + "ref/netcoreapp3.1/WindowsBase.dll": {}, + "ref/netcoreapp3.1/mscorlib.dll": {}, + "ref/netcoreapp3.1/netstandard.dll": {} + } + }, + "Microsoft.Win32.Registry/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + } + }, + "Microsoft.Win32.SystemEvents/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {} + } + }, + "runtime.win-x86.Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.CSharp.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.VisualBasic.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.Win32.Primitives.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.Win32.Registry.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.AppContext.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Buffers.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.Concurrent.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.Immutable.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.NonGeneric.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.Specialized.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.Annotations.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.Primitives.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Configuration.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Console.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Core.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Data.Common.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Data.DataSetExtensions.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Data.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Contracts.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Debug.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Process.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.StackTrace.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Tools.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.TraceSource.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Tracing.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Drawing.Primitives.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Drawing.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Dynamic.Runtime.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Globalization.Calendars.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Globalization.Extensions.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Globalization.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Compression.Brotli.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Compression.FileSystem.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Compression.ZipFile.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Compression.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.IsolatedStorage.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Pipes.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Linq.Expressions.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Linq.Parallel.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Linq.Queryable.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Linq.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Memory.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Http.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.HttpListener.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Mail.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.NameResolution.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.NetworkInformation.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Ping.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Primitives.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Requests.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Security.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.ServicePoint.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Sockets.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebClient.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebHeaderCollection.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebProxy.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebSockets.Client.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebSockets.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Numerics.Vectors.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Numerics.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.ObjectModel.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Private.DataContractSerialization.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Private.Uri.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Private.Xml.Linq.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Private.Xml.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.DispatchProxy.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Emit.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Extensions.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Metadata.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Primitives.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.TypeExtensions.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Resources.Reader.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Resources.ResourceManager.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Resources.Writer.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Extensions.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Handles.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.InteropServices.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Intrinsics.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Loader.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Numerics.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.Json.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.AccessControl.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Claims.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Cng.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Csp.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Principal.Windows.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Principal.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.SecureString.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.ServiceModel.Web.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.ServiceProcess.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Encoding.Extensions.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Encoding.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Encodings.Web.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Json.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.RegularExpressions.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Channels.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Overlapped.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Tasks.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Thread.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.ThreadPool.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Timer.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Transactions.Local.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Transactions.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.ValueTuple.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Web.HttpUtility.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Web.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Windows.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.Linq.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.ReaderWriter.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.Serialization.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XDocument.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XPath.XDocument.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XPath.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XmlDocument.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XmlSerializer.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/System.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/WindowsBase.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/mscorlib.dll": {}, + "runtimes/win-x86/lib/netcoreapp3.1/netstandard.dll": {} + }, + "native": { + "runtimes/win-x86/native/clrcompression.dll": {}, + "runtimes/win-x86/native/clrcompression.pdb": {} + } + }, + "System.Diagnostics.EventLog/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "Microsoft.Win32.Registry": "4.7.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/System.Diagnostics.EventLog.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {} + } + }, + "System.Drawing.Common/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "Microsoft.Win32.SystemEvents": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Drawing.Common.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + }, + "System.Runtime.Intrinsics.Experimental/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll": {} + } + }, + "System.Security.AccessControl/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0-preview3.19551.4", + "System.Security.Principal.Windows": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {} + } + }, + "System.Security.Permissions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0-preview3.19551.4", + "System.Windows.Extensions": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {} + } + }, + "System.Windows.Extensions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.Diagnostics.Tools.RuntimeClient/1.0.4-preview6.19326.1": { + "sha512": "evpZfGTpiBlEWBp/2N5x1emi6b9IAJ0R24Xn80ZlnD3PLbnIthPve6M/YBN9qaLR3OJSlpp3Q3T6z9YHUESpAw==", + "type": "package", + "path": "microsoft.diagnostics.tools.runtimeclient/1.0.4-preview6.19326.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.dll", + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.pdb", + "lib/netcoreapp2.1/Microsoft.Diagnostics.Tools.RuntimeClient.xml", + "microsoft.diagnostics.tools.runtimeclient.1.0.4-preview6.19326.1.nupkg.sha512", + "microsoft.diagnostics.tools.runtimeclient.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "sha512": "Clr2Jue6oyBlnsVf9g5qjoi06+QDYVq+U32buU9W+mRYeIFg4LXeJei1q6P/1niiKX8WIVo7KbBnqW80jVcOvw==", + "type": "package", + "path": "microsoft.netcore.platforms/3.1.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.3.1.0-preview3.19551.4.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "sha512": "pArsL7b8OzeIpQSHKwyJS6zHoLGbEG7Zu9FgncmsyZhr7BxcS7tKgmS5lcfWe1p8O8G6/UaNGskK5TQCk7LLCA==", + "type": "package", + "path": "microsoft.private.corefx.netcoreapp/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "microsoft.private.corefx.netcoreapp.4.7.0-preview3.19551.4.nupkg.sha512", + "microsoft.private.corefx.netcoreapp.nuspec", + "ref/netcoreapp3.1/Microsoft.CSharp.dll", + "ref/netcoreapp3.1/Microsoft.CSharp.pdb", + "ref/netcoreapp3.1/Microsoft.CSharp.xml", + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.dll", + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.pdb", + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.xml", + "ref/netcoreapp3.1/Microsoft.VisualBasic.dll", + "ref/netcoreapp3.1/Microsoft.VisualBasic.pdb", + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.dll", + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.pdb", + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.xml", + "ref/netcoreapp3.1/System.AppContext.dll", + "ref/netcoreapp3.1/System.AppContext.pdb", + "ref/netcoreapp3.1/System.Buffers.dll", + "ref/netcoreapp3.1/System.Buffers.pdb", + "ref/netcoreapp3.1/System.Buffers.xml", + "ref/netcoreapp3.1/System.Collections.Concurrent.dll", + "ref/netcoreapp3.1/System.Collections.Concurrent.pdb", + "ref/netcoreapp3.1/System.Collections.Concurrent.xml", + "ref/netcoreapp3.1/System.Collections.Immutable.dll", + "ref/netcoreapp3.1/System.Collections.Immutable.pdb", + "ref/netcoreapp3.1/System.Collections.Immutable.xml", + "ref/netcoreapp3.1/System.Collections.NonGeneric.dll", + "ref/netcoreapp3.1/System.Collections.NonGeneric.pdb", + "ref/netcoreapp3.1/System.Collections.NonGeneric.xml", + "ref/netcoreapp3.1/System.Collections.Specialized.dll", + "ref/netcoreapp3.1/System.Collections.Specialized.pdb", + "ref/netcoreapp3.1/System.Collections.Specialized.xml", + "ref/netcoreapp3.1/System.Collections.dll", + "ref/netcoreapp3.1/System.Collections.pdb", + "ref/netcoreapp3.1/System.Collections.xml", + "ref/netcoreapp3.1/System.ComponentModel.Annotations.dll", + "ref/netcoreapp3.1/System.ComponentModel.Annotations.pdb", + "ref/netcoreapp3.1/System.ComponentModel.Annotations.xml", + "ref/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll", + "ref/netcoreapp3.1/System.ComponentModel.DataAnnotations.pdb", + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll", + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.pdb", + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.xml", + "ref/netcoreapp3.1/System.ComponentModel.Primitives.dll", + "ref/netcoreapp3.1/System.ComponentModel.Primitives.pdb", + "ref/netcoreapp3.1/System.ComponentModel.Primitives.xml", + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.dll", + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.pdb", + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.xml", + "ref/netcoreapp3.1/System.ComponentModel.dll", + "ref/netcoreapp3.1/System.ComponentModel.pdb", + "ref/netcoreapp3.1/System.ComponentModel.xml", + "ref/netcoreapp3.1/System.Configuration.dll", + "ref/netcoreapp3.1/System.Configuration.pdb", + "ref/netcoreapp3.1/System.Console.dll", + "ref/netcoreapp3.1/System.Console.pdb", + "ref/netcoreapp3.1/System.Console.xml", + "ref/netcoreapp3.1/System.Core.dll", + "ref/netcoreapp3.1/System.Core.pdb", + "ref/netcoreapp3.1/System.Data.Common.dll", + "ref/netcoreapp3.1/System.Data.Common.pdb", + "ref/netcoreapp3.1/System.Data.Common.xml", + "ref/netcoreapp3.1/System.Data.DataSetExtensions.dll", + "ref/netcoreapp3.1/System.Data.DataSetExtensions.pdb", + "ref/netcoreapp3.1/System.Data.dll", + "ref/netcoreapp3.1/System.Data.pdb", + "ref/netcoreapp3.1/System.Diagnostics.Contracts.dll", + "ref/netcoreapp3.1/System.Diagnostics.Contracts.pdb", + "ref/netcoreapp3.1/System.Diagnostics.Contracts.xml", + "ref/netcoreapp3.1/System.Diagnostics.Debug.dll", + "ref/netcoreapp3.1/System.Diagnostics.Debug.pdb", + "ref/netcoreapp3.1/System.Diagnostics.Debug.xml", + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll", + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.pdb", + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.xml", + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll", + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.pdb", + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.xml", + "ref/netcoreapp3.1/System.Diagnostics.Process.dll", + "ref/netcoreapp3.1/System.Diagnostics.Process.pdb", + "ref/netcoreapp3.1/System.Diagnostics.Process.xml", + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.dll", + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.pdb", + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.xml", + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll", + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.pdb", + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netcoreapp3.1/System.Diagnostics.Tools.dll", + "ref/netcoreapp3.1/System.Diagnostics.Tools.pdb", + "ref/netcoreapp3.1/System.Diagnostics.Tools.xml", + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.dll", + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.pdb", + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.xml", + "ref/netcoreapp3.1/System.Diagnostics.Tracing.dll", + "ref/netcoreapp3.1/System.Diagnostics.Tracing.pdb", + "ref/netcoreapp3.1/System.Diagnostics.Tracing.xml", + "ref/netcoreapp3.1/System.Drawing.Primitives.dll", + "ref/netcoreapp3.1/System.Drawing.Primitives.pdb", + "ref/netcoreapp3.1/System.Drawing.Primitives.xml", + "ref/netcoreapp3.1/System.Drawing.dll", + "ref/netcoreapp3.1/System.Drawing.pdb", + "ref/netcoreapp3.1/System.Dynamic.Runtime.dll", + "ref/netcoreapp3.1/System.Dynamic.Runtime.pdb", + "ref/netcoreapp3.1/System.Globalization.Calendars.dll", + "ref/netcoreapp3.1/System.Globalization.Calendars.pdb", + "ref/netcoreapp3.1/System.Globalization.Extensions.dll", + "ref/netcoreapp3.1/System.Globalization.Extensions.pdb", + "ref/netcoreapp3.1/System.Globalization.dll", + "ref/netcoreapp3.1/System.Globalization.pdb", + "ref/netcoreapp3.1/System.IO.Compression.Brotli.dll", + "ref/netcoreapp3.1/System.IO.Compression.Brotli.pdb", + "ref/netcoreapp3.1/System.IO.Compression.Brotli.xml", + "ref/netcoreapp3.1/System.IO.Compression.FileSystem.dll", + "ref/netcoreapp3.1/System.IO.Compression.FileSystem.pdb", + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.dll", + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.pdb", + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.xml", + "ref/netcoreapp3.1/System.IO.Compression.dll", + "ref/netcoreapp3.1/System.IO.Compression.pdb", + "ref/netcoreapp3.1/System.IO.Compression.xml", + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll", + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.pdb", + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.xml", + "ref/netcoreapp3.1/System.IO.FileSystem.Primitives.dll", + "ref/netcoreapp3.1/System.IO.FileSystem.Primitives.pdb", + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.dll", + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.pdb", + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.xml", + "ref/netcoreapp3.1/System.IO.FileSystem.dll", + "ref/netcoreapp3.1/System.IO.FileSystem.pdb", + "ref/netcoreapp3.1/System.IO.FileSystem.xml", + "ref/netcoreapp3.1/System.IO.IsolatedStorage.dll", + "ref/netcoreapp3.1/System.IO.IsolatedStorage.pdb", + "ref/netcoreapp3.1/System.IO.IsolatedStorage.xml", + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.dll", + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.pdb", + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.xml", + "ref/netcoreapp3.1/System.IO.Pipes.dll", + "ref/netcoreapp3.1/System.IO.Pipes.pdb", + "ref/netcoreapp3.1/System.IO.Pipes.xml", + "ref/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll", + "ref/netcoreapp3.1/System.IO.UnmanagedMemoryStream.pdb", + "ref/netcoreapp3.1/System.IO.dll", + "ref/netcoreapp3.1/System.IO.pdb", + "ref/netcoreapp3.1/System.Linq.Expressions.dll", + "ref/netcoreapp3.1/System.Linq.Expressions.pdb", + "ref/netcoreapp3.1/System.Linq.Expressions.xml", + "ref/netcoreapp3.1/System.Linq.Parallel.dll", + "ref/netcoreapp3.1/System.Linq.Parallel.pdb", + "ref/netcoreapp3.1/System.Linq.Parallel.xml", + "ref/netcoreapp3.1/System.Linq.Queryable.dll", + "ref/netcoreapp3.1/System.Linq.Queryable.pdb", + "ref/netcoreapp3.1/System.Linq.Queryable.xml", + "ref/netcoreapp3.1/System.Linq.dll", + "ref/netcoreapp3.1/System.Linq.pdb", + "ref/netcoreapp3.1/System.Linq.xml", + "ref/netcoreapp3.1/System.Memory.dll", + "ref/netcoreapp3.1/System.Memory.pdb", + "ref/netcoreapp3.1/System.Memory.xml", + "ref/netcoreapp3.1/System.Net.Http.dll", + "ref/netcoreapp3.1/System.Net.Http.pdb", + "ref/netcoreapp3.1/System.Net.Http.xml", + "ref/netcoreapp3.1/System.Net.HttpListener.dll", + "ref/netcoreapp3.1/System.Net.HttpListener.pdb", + "ref/netcoreapp3.1/System.Net.HttpListener.xml", + "ref/netcoreapp3.1/System.Net.Mail.dll", + "ref/netcoreapp3.1/System.Net.Mail.pdb", + "ref/netcoreapp3.1/System.Net.Mail.xml", + "ref/netcoreapp3.1/System.Net.NameResolution.dll", + "ref/netcoreapp3.1/System.Net.NameResolution.pdb", + "ref/netcoreapp3.1/System.Net.NameResolution.xml", + "ref/netcoreapp3.1/System.Net.NetworkInformation.dll", + "ref/netcoreapp3.1/System.Net.NetworkInformation.pdb", + "ref/netcoreapp3.1/System.Net.NetworkInformation.xml", + "ref/netcoreapp3.1/System.Net.Ping.dll", + "ref/netcoreapp3.1/System.Net.Ping.pdb", + "ref/netcoreapp3.1/System.Net.Ping.xml", + "ref/netcoreapp3.1/System.Net.Primitives.dll", + "ref/netcoreapp3.1/System.Net.Primitives.pdb", + "ref/netcoreapp3.1/System.Net.Primitives.xml", + "ref/netcoreapp3.1/System.Net.Requests.dll", + "ref/netcoreapp3.1/System.Net.Requests.pdb", + "ref/netcoreapp3.1/System.Net.Requests.xml", + "ref/netcoreapp3.1/System.Net.Security.dll", + "ref/netcoreapp3.1/System.Net.Security.pdb", + "ref/netcoreapp3.1/System.Net.Security.xml", + "ref/netcoreapp3.1/System.Net.ServicePoint.dll", + "ref/netcoreapp3.1/System.Net.ServicePoint.pdb", + "ref/netcoreapp3.1/System.Net.ServicePoint.xml", + "ref/netcoreapp3.1/System.Net.Sockets.dll", + "ref/netcoreapp3.1/System.Net.Sockets.pdb", + "ref/netcoreapp3.1/System.Net.Sockets.xml", + "ref/netcoreapp3.1/System.Net.WebClient.dll", + "ref/netcoreapp3.1/System.Net.WebClient.pdb", + "ref/netcoreapp3.1/System.Net.WebClient.xml", + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.dll", + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.pdb", + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.xml", + "ref/netcoreapp3.1/System.Net.WebProxy.dll", + "ref/netcoreapp3.1/System.Net.WebProxy.pdb", + "ref/netcoreapp3.1/System.Net.WebProxy.xml", + "ref/netcoreapp3.1/System.Net.WebSockets.Client.dll", + "ref/netcoreapp3.1/System.Net.WebSockets.Client.pdb", + "ref/netcoreapp3.1/System.Net.WebSockets.Client.xml", + "ref/netcoreapp3.1/System.Net.WebSockets.dll", + "ref/netcoreapp3.1/System.Net.WebSockets.pdb", + "ref/netcoreapp3.1/System.Net.WebSockets.xml", + "ref/netcoreapp3.1/System.Net.dll", + "ref/netcoreapp3.1/System.Net.pdb", + "ref/netcoreapp3.1/System.Numerics.Vectors.dll", + "ref/netcoreapp3.1/System.Numerics.Vectors.pdb", + "ref/netcoreapp3.1/System.Numerics.Vectors.xml", + "ref/netcoreapp3.1/System.Numerics.dll", + "ref/netcoreapp3.1/System.Numerics.pdb", + "ref/netcoreapp3.1/System.ObjectModel.dll", + "ref/netcoreapp3.1/System.ObjectModel.pdb", + "ref/netcoreapp3.1/System.ObjectModel.xml", + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.dll", + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.pdb", + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.xml", + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll", + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.pdb", + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.xml", + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll", + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.pdb", + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.xml", + "ref/netcoreapp3.1/System.Reflection.Emit.dll", + "ref/netcoreapp3.1/System.Reflection.Emit.pdb", + "ref/netcoreapp3.1/System.Reflection.Emit.xml", + "ref/netcoreapp3.1/System.Reflection.Extensions.dll", + "ref/netcoreapp3.1/System.Reflection.Extensions.pdb", + "ref/netcoreapp3.1/System.Reflection.Metadata.dll", + "ref/netcoreapp3.1/System.Reflection.Metadata.pdb", + "ref/netcoreapp3.1/System.Reflection.Metadata.xml", + "ref/netcoreapp3.1/System.Reflection.Primitives.dll", + "ref/netcoreapp3.1/System.Reflection.Primitives.pdb", + "ref/netcoreapp3.1/System.Reflection.Primitives.xml", + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.dll", + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.pdb", + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.xml", + "ref/netcoreapp3.1/System.Reflection.dll", + "ref/netcoreapp3.1/System.Reflection.pdb", + "ref/netcoreapp3.1/System.Resources.Reader.dll", + "ref/netcoreapp3.1/System.Resources.Reader.pdb", + "ref/netcoreapp3.1/System.Resources.ResourceManager.dll", + "ref/netcoreapp3.1/System.Resources.ResourceManager.pdb", + "ref/netcoreapp3.1/System.Resources.ResourceManager.xml", + "ref/netcoreapp3.1/System.Resources.Writer.dll", + "ref/netcoreapp3.1/System.Resources.Writer.pdb", + "ref/netcoreapp3.1/System.Resources.Writer.xml", + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.pdb", + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll", + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.pdb", + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.xml", + "ref/netcoreapp3.1/System.Runtime.Extensions.dll", + "ref/netcoreapp3.1/System.Runtime.Extensions.pdb", + "ref/netcoreapp3.1/System.Runtime.Extensions.xml", + "ref/netcoreapp3.1/System.Runtime.Handles.dll", + "ref/netcoreapp3.1/System.Runtime.Handles.pdb", + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.pdb", + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.xml", + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll", + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.pdb", + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/netcoreapp3.1/System.Runtime.InteropServices.dll", + "ref/netcoreapp3.1/System.Runtime.InteropServices.pdb", + "ref/netcoreapp3.1/System.Runtime.InteropServices.xml", + "ref/netcoreapp3.1/System.Runtime.Intrinsics.dll", + "ref/netcoreapp3.1/System.Runtime.Intrinsics.pdb", + "ref/netcoreapp3.1/System.Runtime.Intrinsics.xml", + "ref/netcoreapp3.1/System.Runtime.Loader.dll", + "ref/netcoreapp3.1/System.Runtime.Loader.pdb", + "ref/netcoreapp3.1/System.Runtime.Loader.xml", + "ref/netcoreapp3.1/System.Runtime.Numerics.dll", + "ref/netcoreapp3.1/System.Runtime.Numerics.pdb", + "ref/netcoreapp3.1/System.Runtime.Numerics.xml", + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll", + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.pdb", + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.xml", + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.dll", + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.pdb", + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.xml", + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll", + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.pdb", + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.xml", + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.dll", + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.pdb", + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.xml", + "ref/netcoreapp3.1/System.Runtime.Serialization.dll", + "ref/netcoreapp3.1/System.Runtime.Serialization.pdb", + "ref/netcoreapp3.1/System.Runtime.dll", + "ref/netcoreapp3.1/System.Runtime.pdb", + "ref/netcoreapp3.1/System.Runtime.xml", + "ref/netcoreapp3.1/System.Security.Claims.dll", + "ref/netcoreapp3.1/System.Security.Claims.pdb", + "ref/netcoreapp3.1/System.Security.Claims.xml", + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll", + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.pdb", + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.xml", + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.dll", + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.pdb", + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.xml", + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.dll", + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.pdb", + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.xml", + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.dll", + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.pdb", + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.xml", + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll", + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.pdb", + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.xml", + "ref/netcoreapp3.1/System.Security.Principal.dll", + "ref/netcoreapp3.1/System.Security.Principal.pdb", + "ref/netcoreapp3.1/System.Security.Principal.xml", + "ref/netcoreapp3.1/System.Security.SecureString.dll", + "ref/netcoreapp3.1/System.Security.SecureString.pdb", + "ref/netcoreapp3.1/System.Security.dll", + "ref/netcoreapp3.1/System.Security.pdb", + "ref/netcoreapp3.1/System.ServiceModel.Web.dll", + "ref/netcoreapp3.1/System.ServiceModel.Web.pdb", + "ref/netcoreapp3.1/System.ServiceProcess.dll", + "ref/netcoreapp3.1/System.ServiceProcess.pdb", + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.pdb", + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.xml", + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.dll", + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.pdb", + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.xml", + "ref/netcoreapp3.1/System.Text.Encoding.dll", + "ref/netcoreapp3.1/System.Text.Encoding.pdb", + "ref/netcoreapp3.1/System.Text.Encodings.Web.dll", + "ref/netcoreapp3.1/System.Text.Encodings.Web.pdb", + "ref/netcoreapp3.1/System.Text.Encodings.Web.xml", + "ref/netcoreapp3.1/System.Text.Json.dll", + "ref/netcoreapp3.1/System.Text.Json.pdb", + "ref/netcoreapp3.1/System.Text.Json.xml", + "ref/netcoreapp3.1/System.Text.RegularExpressions.dll", + "ref/netcoreapp3.1/System.Text.RegularExpressions.pdb", + "ref/netcoreapp3.1/System.Text.RegularExpressions.xml", + "ref/netcoreapp3.1/System.Threading.Channels.dll", + "ref/netcoreapp3.1/System.Threading.Channels.pdb", + "ref/netcoreapp3.1/System.Threading.Channels.xml", + "ref/netcoreapp3.1/System.Threading.Overlapped.dll", + "ref/netcoreapp3.1/System.Threading.Overlapped.pdb", + "ref/netcoreapp3.1/System.Threading.Overlapped.xml", + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll", + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.pdb", + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.xml", + "ref/netcoreapp3.1/System.Threading.Tasks.Extensions.dll", + "ref/netcoreapp3.1/System.Threading.Tasks.Extensions.pdb", + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.dll", + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.pdb", + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.xml", + "ref/netcoreapp3.1/System.Threading.Tasks.dll", + "ref/netcoreapp3.1/System.Threading.Tasks.pdb", + "ref/netcoreapp3.1/System.Threading.Tasks.xml", + "ref/netcoreapp3.1/System.Threading.Thread.dll", + "ref/netcoreapp3.1/System.Threading.Thread.pdb", + "ref/netcoreapp3.1/System.Threading.Thread.xml", + "ref/netcoreapp3.1/System.Threading.ThreadPool.dll", + "ref/netcoreapp3.1/System.Threading.ThreadPool.pdb", + "ref/netcoreapp3.1/System.Threading.ThreadPool.xml", + "ref/netcoreapp3.1/System.Threading.Timer.dll", + "ref/netcoreapp3.1/System.Threading.Timer.pdb", + "ref/netcoreapp3.1/System.Threading.Timer.xml", + "ref/netcoreapp3.1/System.Threading.dll", + "ref/netcoreapp3.1/System.Threading.pdb", + "ref/netcoreapp3.1/System.Threading.xml", + "ref/netcoreapp3.1/System.Transactions.Local.dll", + "ref/netcoreapp3.1/System.Transactions.Local.pdb", + "ref/netcoreapp3.1/System.Transactions.Local.xml", + "ref/netcoreapp3.1/System.Transactions.dll", + "ref/netcoreapp3.1/System.Transactions.pdb", + "ref/netcoreapp3.1/System.ValueTuple.dll", + "ref/netcoreapp3.1/System.ValueTuple.pdb", + "ref/netcoreapp3.1/System.Web.HttpUtility.dll", + "ref/netcoreapp3.1/System.Web.HttpUtility.pdb", + "ref/netcoreapp3.1/System.Web.HttpUtility.xml", + "ref/netcoreapp3.1/System.Web.dll", + "ref/netcoreapp3.1/System.Web.pdb", + "ref/netcoreapp3.1/System.Windows.dll", + "ref/netcoreapp3.1/System.Windows.pdb", + "ref/netcoreapp3.1/System.Xml.Linq.dll", + "ref/netcoreapp3.1/System.Xml.Linq.pdb", + "ref/netcoreapp3.1/System.Xml.ReaderWriter.dll", + "ref/netcoreapp3.1/System.Xml.ReaderWriter.pdb", + "ref/netcoreapp3.1/System.Xml.ReaderWriter.xml", + "ref/netcoreapp3.1/System.Xml.Serialization.dll", + "ref/netcoreapp3.1/System.Xml.Serialization.pdb", + "ref/netcoreapp3.1/System.Xml.XDocument.dll", + "ref/netcoreapp3.1/System.Xml.XDocument.pdb", + "ref/netcoreapp3.1/System.Xml.XDocument.xml", + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.dll", + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.pdb", + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.xml", + "ref/netcoreapp3.1/System.Xml.XPath.dll", + "ref/netcoreapp3.1/System.Xml.XPath.pdb", + "ref/netcoreapp3.1/System.Xml.XPath.xml", + "ref/netcoreapp3.1/System.Xml.XmlDocument.dll", + "ref/netcoreapp3.1/System.Xml.XmlDocument.pdb", + "ref/netcoreapp3.1/System.Xml.XmlSerializer.dll", + "ref/netcoreapp3.1/System.Xml.XmlSerializer.pdb", + "ref/netcoreapp3.1/System.Xml.XmlSerializer.xml", + "ref/netcoreapp3.1/System.Xml.dll", + "ref/netcoreapp3.1/System.Xml.pdb", + "ref/netcoreapp3.1/System.dll", + "ref/netcoreapp3.1/System.pdb", + "ref/netcoreapp3.1/WindowsBase.dll", + "ref/netcoreapp3.1/WindowsBase.pdb", + "ref/netcoreapp3.1/WindowsBase.xml", + "ref/netcoreapp3.1/mscorlib.dll", + "ref/netcoreapp3.1/mscorlib.pdb", + "ref/netcoreapp3.1/netstandard.dll", + "ref/netcoreapp3.1/netstandard.pdb", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.Registry/4.7.0-preview3.19551.4": { + "sha512": "4y+CUMrtvvj9WbQDz4Sck3nEJopfLMi+p+BrYkBHmYGp8juzbBCBNKWB0jOXBnDY+pW7bDHQ1ARA6QCH2S3SHg==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0-preview3.19551.4.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/net472/Microsoft.Win32.Registry.dll", + "ref/net472/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.SystemEvents/4.7.0-preview3.19551.4": { + "sha512": "agmxXP9/xsxB6MCGXW6lMKUCe/gmsLYKRSxIUIA7WjjDM4qWzopxZ5ekQzn9qnG37mPh2U5O0yVpPZ3Pfwf7Dg==", + "type": "package", + "path": "microsoft.win32.systemevents/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.4.7.0-preview3.19551.4.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "ref/net461/Microsoft.Win32.SystemEvents.dll", + "ref/net461/Microsoft.Win32.SystemEvents.xml", + "ref/net472/Microsoft.Win32.SystemEvents.dll", + "ref/net472/Microsoft.Win32.SystemEvents.xml", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-arm.Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "sha512": "uvfxmQCSNcseVxXqNkW/1fI8E+lELVPIWsb9P8xpNQFu5v4X50p6/9qm8+DQV2DmYBNhUUkjm9qacCn5tIQSLw==", + "type": "package", + "path": "runtime.win-arm.microsoft.private.corefx.netcoreapp/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win-arm.microsoft.private.corefx.netcoreapp.4.7.0-preview3.19551.4.nupkg.sha512", + "runtime.win-arm.microsoft.private.corefx.netcoreapp.nuspec", + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.CSharp.dll", + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.CSharp.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.dll", + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.VisualBasic.dll", + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.VisualBasic.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.Win32.Primitives.dll", + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.Win32.Primitives.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.Win32.Registry.dll", + "runtimes/win-arm/lib/netcoreapp3.1/Microsoft.Win32.Registry.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.AppContext.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.AppContext.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Buffers.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Buffers.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.Concurrent.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.Concurrent.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.Immutable.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.Immutable.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.NonGeneric.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.NonGeneric.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.Specialized.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.Specialized.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Collections.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.Annotations.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.Annotations.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.Primitives.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.Primitives.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.ComponentModel.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Configuration.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Configuration.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Console.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Console.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Core.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Core.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Data.Common.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Data.Common.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Data.DataSetExtensions.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Data.DataSetExtensions.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Data.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Data.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Contracts.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Contracts.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Debug.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Debug.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Process.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Process.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.StackTrace.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.StackTrace.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Tools.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Tools.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.TraceSource.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.TraceSource.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Tracing.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Diagnostics.Tracing.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Drawing.Primitives.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Drawing.Primitives.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Drawing.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Drawing.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Dynamic.Runtime.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Dynamic.Runtime.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Globalization.Calendars.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Globalization.Calendars.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Globalization.Extensions.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Globalization.Extensions.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Globalization.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Globalization.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Compression.Brotli.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Compression.Brotli.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Compression.FileSystem.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Compression.FileSystem.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Compression.ZipFile.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Compression.ZipFile.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Compression.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Compression.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.FileSystem.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.IsolatedStorage.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.IsolatedStorage.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Pipes.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.Pipes.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.IO.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Linq.Expressions.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Linq.Expressions.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Linq.Parallel.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Linq.Parallel.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Linq.Queryable.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Linq.Queryable.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Linq.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Linq.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Memory.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Memory.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Http.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Http.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.HttpListener.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.HttpListener.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Mail.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Mail.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.NameResolution.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.NameResolution.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.NetworkInformation.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.NetworkInformation.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Ping.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Ping.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Primitives.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Primitives.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Requests.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Requests.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Security.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Security.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.ServicePoint.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.ServicePoint.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Sockets.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.Sockets.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebClient.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebClient.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebHeaderCollection.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebHeaderCollection.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebProxy.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebProxy.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebSockets.Client.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebSockets.Client.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebSockets.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.WebSockets.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Net.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Numerics.Vectors.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Numerics.Vectors.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Numerics.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Numerics.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.ObjectModel.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.ObjectModel.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Private.DataContractSerialization.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Private.DataContractSerialization.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Private.Uri.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Private.Uri.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Private.Xml.Linq.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Private.Xml.Linq.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Private.Xml.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Private.Xml.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.DispatchProxy.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.DispatchProxy.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Emit.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Emit.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Extensions.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Extensions.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Metadata.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Metadata.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Primitives.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.Primitives.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.TypeExtensions.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.TypeExtensions.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Reflection.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Resources.Reader.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Resources.Reader.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Resources.ResourceManager.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Resources.ResourceManager.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Resources.Writer.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Resources.Writer.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Extensions.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Extensions.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Handles.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Handles.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.InteropServices.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.InteropServices.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Intrinsics.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Intrinsics.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Loader.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Loader.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Numerics.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Numerics.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.Json.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.Json.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.Serialization.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Runtime.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.AccessControl.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.AccessControl.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Claims.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Claims.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Cng.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Cng.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Csp.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Csp.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Principal.Windows.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Principal.Windows.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Principal.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.Principal.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.SecureString.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.SecureString.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Security.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.ServiceModel.Web.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.ServiceModel.Web.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.ServiceProcess.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.ServiceProcess.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Encoding.CodePages.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Encoding.Extensions.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Encoding.Extensions.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Encoding.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Encoding.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Encodings.Web.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Json.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.Json.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.RegularExpressions.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Text.RegularExpressions.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Channels.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Channels.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Overlapped.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Overlapped.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Tasks.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Tasks.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Thread.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Thread.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.ThreadPool.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.ThreadPool.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Timer.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.Timer.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Threading.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Transactions.Local.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Transactions.Local.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Transactions.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Transactions.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.ValueTuple.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.ValueTuple.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Web.HttpUtility.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Web.HttpUtility.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Web.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Web.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Windows.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Windows.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.Linq.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.Linq.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.ReaderWriter.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.ReaderWriter.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.Serialization.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.Serialization.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XDocument.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XDocument.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XPath.XDocument.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XPath.XDocument.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XPath.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XPath.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XmlDocument.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XmlDocument.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XmlSerializer.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.XmlSerializer.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.Xml.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/System.dll", + "runtimes/win-arm/lib/netcoreapp3.1/System.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/WindowsBase.dll", + "runtimes/win-arm/lib/netcoreapp3.1/WindowsBase.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/WindowsBase.xml", + "runtimes/win-arm/lib/netcoreapp3.1/mscorlib.dll", + "runtimes/win-arm/lib/netcoreapp3.1/mscorlib.pdb", + "runtimes/win-arm/lib/netcoreapp3.1/netstandard.dll", + "runtimes/win-arm/lib/netcoreapp3.1/netstandard.pdb", + "runtimes/win-arm/native/clrcompression.dll", + "runtimes/win-arm/native/clrcompression.pdb", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-arm64.Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "sha512": "73E9EZCBa0o82lhvcwjm6RYBFFyViOl1iO+2cfKnPabgpdx4F70+Tm/3sZ/VT9kbVYkj2MOoLyaWB6V3UUl8HA==", + "type": "package", + "path": "runtime.win-arm64.microsoft.private.corefx.netcoreapp/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win-arm64.microsoft.private.corefx.netcoreapp.4.7.0-preview3.19551.4.nupkg.sha512", + "runtime.win-arm64.microsoft.private.corefx.netcoreapp.nuspec", + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.CSharp.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.CSharp.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.VisualBasic.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.VisualBasic.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.Win32.Primitives.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.Win32.Primitives.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.Win32.Registry.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/Microsoft.Win32.Registry.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.AppContext.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.AppContext.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Buffers.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Buffers.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.Concurrent.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.Concurrent.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.Immutable.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.Immutable.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.NonGeneric.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.NonGeneric.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.Specialized.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.Specialized.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Collections.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.Annotations.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.Annotations.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.Primitives.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.Primitives.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ComponentModel.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Configuration.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Configuration.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Console.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Console.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Core.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Core.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Data.Common.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Data.Common.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Data.DataSetExtensions.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Data.DataSetExtensions.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Data.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Data.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Contracts.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Contracts.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Debug.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Debug.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Process.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Process.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.StackTrace.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.StackTrace.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Tools.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Tools.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.TraceSource.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.TraceSource.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Tracing.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Diagnostics.Tracing.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Drawing.Primitives.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Drawing.Primitives.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Drawing.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Drawing.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Dynamic.Runtime.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Dynamic.Runtime.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Globalization.Calendars.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Globalization.Calendars.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Globalization.Extensions.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Globalization.Extensions.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Globalization.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Globalization.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Compression.Brotli.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Compression.Brotli.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Compression.FileSystem.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Compression.FileSystem.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Compression.ZipFile.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Compression.ZipFile.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Compression.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Compression.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.FileSystem.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.IsolatedStorage.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.IsolatedStorage.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Pipes.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.Pipes.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.IO.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Linq.Expressions.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Linq.Expressions.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Linq.Parallel.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Linq.Parallel.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Linq.Queryable.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Linq.Queryable.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Linq.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Linq.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Memory.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Memory.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Http.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Http.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.HttpListener.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.HttpListener.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Mail.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Mail.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.NameResolution.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.NameResolution.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.NetworkInformation.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.NetworkInformation.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Ping.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Ping.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Primitives.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Primitives.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Requests.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Requests.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Security.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Security.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.ServicePoint.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.ServicePoint.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Sockets.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.Sockets.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebClient.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebClient.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebHeaderCollection.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebHeaderCollection.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebProxy.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebProxy.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebSockets.Client.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebSockets.Client.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebSockets.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.WebSockets.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Net.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Numerics.Vectors.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Numerics.Vectors.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Numerics.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Numerics.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ObjectModel.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ObjectModel.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Private.DataContractSerialization.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Private.DataContractSerialization.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Private.Uri.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Private.Uri.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Private.Xml.Linq.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Private.Xml.Linq.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Private.Xml.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Private.Xml.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.DispatchProxy.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.DispatchProxy.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Emit.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Emit.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Extensions.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Extensions.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Metadata.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Metadata.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Primitives.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.Primitives.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.TypeExtensions.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.TypeExtensions.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Reflection.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Resources.Reader.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Resources.Reader.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Resources.ResourceManager.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Resources.ResourceManager.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Resources.Writer.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Resources.Writer.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Extensions.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Extensions.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Handles.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Handles.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.InteropServices.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.InteropServices.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Intrinsics.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Intrinsics.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Loader.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Loader.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Numerics.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Numerics.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.Json.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.Json.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.Serialization.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Runtime.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.AccessControl.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.AccessControl.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Claims.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Claims.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Cng.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Cng.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Csp.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Csp.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Principal.Windows.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Principal.Windows.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Principal.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.Principal.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.SecureString.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.SecureString.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Security.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ServiceModel.Web.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ServiceModel.Web.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ServiceProcess.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ServiceProcess.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Encoding.CodePages.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Encoding.Extensions.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Encoding.Extensions.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Encoding.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Encoding.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Encodings.Web.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Json.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.Json.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.RegularExpressions.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Text.RegularExpressions.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Channels.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Channels.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Overlapped.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Overlapped.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Tasks.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Tasks.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Thread.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Thread.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.ThreadPool.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.ThreadPool.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Timer.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.Timer.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Threading.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Transactions.Local.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Transactions.Local.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Transactions.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Transactions.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ValueTuple.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.ValueTuple.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Web.HttpUtility.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Web.HttpUtility.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Web.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Web.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Windows.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Windows.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.Linq.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.Linq.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.ReaderWriter.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.ReaderWriter.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.Serialization.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.Serialization.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XDocument.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XDocument.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XPath.XDocument.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XPath.XDocument.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XPath.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XPath.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XmlDocument.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XmlDocument.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XmlSerializer.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.XmlSerializer.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.Xml.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/System.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/System.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/WindowsBase.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/WindowsBase.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/WindowsBase.xml", + "runtimes/win-arm64/lib/netcoreapp3.1/mscorlib.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/mscorlib.pdb", + "runtimes/win-arm64/lib/netcoreapp3.1/netstandard.dll", + "runtimes/win-arm64/lib/netcoreapp3.1/netstandard.pdb", + "runtimes/win-arm64/native/clrcompression.dll", + "runtimes/win-arm64/native/clrcompression.pdb", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x64.Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "sha512": "viZYl1Pm/HVC0MudC1cjGrTZiHFpsWcRNYZFRxx8j5P9k47tKrOeSSeeJH0u4HasDO2v3jjlwXsWxHl5hDCCxQ==", + "type": "package", + "path": "runtime.win-x64.microsoft.private.corefx.netcoreapp/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win-x64.microsoft.private.corefx.netcoreapp.4.7.0-preview3.19551.4.nupkg.sha512", + "runtime.win-x64.microsoft.private.corefx.netcoreapp.nuspec", + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.CSharp.dll", + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.CSharp.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.dll", + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.dll", + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.Win32.Primitives.dll", + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.Win32.Primitives.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.Win32.Registry.dll", + "runtimes/win-x64/lib/netcoreapp3.1/Microsoft.Win32.Registry.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.AppContext.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.AppContext.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Buffers.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Buffers.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.Concurrent.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.Concurrent.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.Immutable.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.Immutable.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.NonGeneric.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.NonGeneric.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.Specialized.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.Specialized.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Collections.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.Annotations.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.Annotations.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.Primitives.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.Primitives.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.ComponentModel.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Configuration.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Configuration.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Console.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Console.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Core.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Core.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Data.Common.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Data.Common.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Data.DataSetExtensions.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Data.DataSetExtensions.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Data.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Data.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Contracts.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Contracts.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Debug.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Debug.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Process.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Process.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.StackTrace.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.StackTrace.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Tools.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Tools.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.TraceSource.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.TraceSource.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Tracing.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Diagnostics.Tracing.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Drawing.Primitives.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Drawing.Primitives.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Drawing.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Drawing.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Dynamic.Runtime.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Dynamic.Runtime.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Globalization.Calendars.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Globalization.Calendars.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Globalization.Extensions.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Globalization.Extensions.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Globalization.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Globalization.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Compression.Brotli.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Compression.Brotli.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Compression.FileSystem.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Compression.FileSystem.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Compression.ZipFile.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Compression.ZipFile.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Compression.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Compression.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.FileSystem.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.IsolatedStorage.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.IsolatedStorage.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Pipes.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.Pipes.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.IO.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Linq.Expressions.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Linq.Expressions.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Linq.Parallel.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Linq.Parallel.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Linq.Queryable.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Linq.Queryable.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Linq.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Linq.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Memory.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Memory.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Http.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Http.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.HttpListener.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.HttpListener.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Mail.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Mail.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.NameResolution.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.NameResolution.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.NetworkInformation.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.NetworkInformation.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Ping.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Ping.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Primitives.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Primitives.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Requests.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Requests.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Security.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Security.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.ServicePoint.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.ServicePoint.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Sockets.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.Sockets.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebClient.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebClient.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebHeaderCollection.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebHeaderCollection.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebProxy.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebProxy.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebSockets.Client.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebSockets.Client.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebSockets.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.WebSockets.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Net.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Numerics.Vectors.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Numerics.Vectors.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Numerics.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Numerics.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.ObjectModel.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.ObjectModel.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Private.DataContractSerialization.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Private.DataContractSerialization.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Private.Uri.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Private.Uri.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Private.Xml.Linq.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Private.Xml.Linq.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Private.Xml.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Private.Xml.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.DispatchProxy.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.DispatchProxy.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Emit.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Emit.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Extensions.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Extensions.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Metadata.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Metadata.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Primitives.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.Primitives.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.TypeExtensions.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.TypeExtensions.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Reflection.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Resources.Reader.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Resources.Reader.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Resources.ResourceManager.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Resources.ResourceManager.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Resources.Writer.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Resources.Writer.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Extensions.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Extensions.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Handles.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Handles.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Intrinsics.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Intrinsics.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Loader.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Loader.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Numerics.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Numerics.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Json.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Json.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.Serialization.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Runtime.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.AccessControl.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.AccessControl.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Claims.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Claims.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Cng.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Cng.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Csp.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Csp.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Principal.Windows.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Principal.Windows.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Principal.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.Principal.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.SecureString.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.SecureString.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Security.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.ServiceModel.Web.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.ServiceModel.Web.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.ServiceProcess.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.ServiceProcess.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Encoding.CodePages.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Encoding.Extensions.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Encoding.Extensions.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Encoding.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Encoding.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Encodings.Web.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Json.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.Json.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.RegularExpressions.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Text.RegularExpressions.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Channels.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Channels.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Overlapped.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Overlapped.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Tasks.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Tasks.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Thread.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Thread.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.ThreadPool.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.ThreadPool.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Timer.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.Timer.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Threading.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Transactions.Local.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Transactions.Local.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Transactions.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Transactions.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.ValueTuple.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.ValueTuple.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Web.HttpUtility.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Web.HttpUtility.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Web.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Web.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Windows.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Windows.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.Linq.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.Linq.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.ReaderWriter.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.ReaderWriter.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.Serialization.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.Serialization.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XDocument.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XDocument.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XPath.XDocument.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XPath.XDocument.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XPath.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XPath.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XmlDocument.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XmlDocument.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XmlSerializer.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.XmlSerializer.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.Xml.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/System.dll", + "runtimes/win-x64/lib/netcoreapp3.1/System.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/WindowsBase.dll", + "runtimes/win-x64/lib/netcoreapp3.1/WindowsBase.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/WindowsBase.xml", + "runtimes/win-x64/lib/netcoreapp3.1/mscorlib.dll", + "runtimes/win-x64/lib/netcoreapp3.1/mscorlib.pdb", + "runtimes/win-x64/lib/netcoreapp3.1/netstandard.dll", + "runtimes/win-x64/lib/netcoreapp3.1/netstandard.pdb", + "runtimes/win-x64/native/clrcompression.dll", + "runtimes/win-x64/native/clrcompression.pdb", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x86.Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "sha512": "9tz6S/gCobMO1HePhwhTOM4s7qrMpIdjyWUAdSo3JwlMYBBDCSu/2y+KC34v8gi8yhLe9UR9EDgA5jwiwY40GQ==", + "type": "package", + "path": "runtime.win-x86.microsoft.private.corefx.netcoreapp/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.win-x86.microsoft.private.corefx.netcoreapp.4.7.0-preview3.19551.4.nupkg.sha512", + "runtime.win-x86.microsoft.private.corefx.netcoreapp.nuspec", + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.CSharp.dll", + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.CSharp.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.dll", + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.VisualBasic.dll", + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.VisualBasic.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.Win32.Primitives.dll", + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.Win32.Primitives.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.Win32.Registry.dll", + "runtimes/win-x86/lib/netcoreapp3.1/Microsoft.Win32.Registry.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.AppContext.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.AppContext.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Buffers.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Buffers.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.Concurrent.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.Concurrent.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.Immutable.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.Immutable.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.NonGeneric.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.NonGeneric.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.Specialized.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.Specialized.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Collections.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.Annotations.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.Annotations.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.Primitives.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.Primitives.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.ComponentModel.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Configuration.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Configuration.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Console.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Console.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Core.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Core.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Data.Common.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Data.Common.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Data.DataSetExtensions.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Data.DataSetExtensions.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Data.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Data.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Contracts.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Contracts.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Debug.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Debug.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Process.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Process.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.StackTrace.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.StackTrace.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Tools.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Tools.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.TraceSource.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.TraceSource.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Tracing.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Diagnostics.Tracing.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Drawing.Primitives.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Drawing.Primitives.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Drawing.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Drawing.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Dynamic.Runtime.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Dynamic.Runtime.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Globalization.Calendars.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Globalization.Calendars.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Globalization.Extensions.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Globalization.Extensions.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Globalization.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Globalization.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Compression.Brotli.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Compression.Brotli.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Compression.FileSystem.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Compression.FileSystem.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Compression.ZipFile.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Compression.ZipFile.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Compression.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Compression.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.FileSystem.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.IsolatedStorage.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.IsolatedStorage.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Pipes.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.Pipes.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.IO.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Linq.Expressions.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Linq.Expressions.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Linq.Parallel.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Linq.Parallel.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Linq.Queryable.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Linq.Queryable.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Linq.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Linq.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Memory.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Memory.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Http.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Http.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.HttpListener.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.HttpListener.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Mail.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Mail.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.NameResolution.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.NameResolution.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.NetworkInformation.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.NetworkInformation.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Ping.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Ping.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Primitives.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Primitives.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Requests.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Requests.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Security.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Security.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.ServicePoint.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.ServicePoint.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Sockets.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.Sockets.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebClient.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebClient.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebHeaderCollection.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebHeaderCollection.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebProxy.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebProxy.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebSockets.Client.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebSockets.Client.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebSockets.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.WebSockets.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Net.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Numerics.Vectors.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Numerics.Vectors.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Numerics.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Numerics.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.ObjectModel.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.ObjectModel.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Private.DataContractSerialization.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Private.DataContractSerialization.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Private.Uri.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Private.Uri.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Private.Xml.Linq.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Private.Xml.Linq.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Private.Xml.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Private.Xml.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.DispatchProxy.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.DispatchProxy.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Emit.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Emit.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Extensions.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Extensions.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Metadata.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Metadata.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Primitives.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.Primitives.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.TypeExtensions.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.TypeExtensions.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Reflection.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Resources.Reader.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Resources.Reader.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Resources.ResourceManager.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Resources.ResourceManager.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Resources.Writer.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Resources.Writer.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Extensions.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Extensions.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Handles.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Handles.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.InteropServices.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.InteropServices.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Intrinsics.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Intrinsics.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Loader.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Loader.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Numerics.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Numerics.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.Json.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.Json.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.Serialization.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Runtime.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.AccessControl.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.AccessControl.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Claims.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Claims.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Cng.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Cng.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Csp.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Csp.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Principal.Windows.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Principal.Windows.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Principal.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.Principal.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.SecureString.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.SecureString.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Security.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.ServiceModel.Web.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.ServiceModel.Web.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.ServiceProcess.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.ServiceProcess.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Encoding.CodePages.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Encoding.Extensions.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Encoding.Extensions.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Encoding.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Encoding.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Encodings.Web.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Json.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.Json.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.RegularExpressions.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Text.RegularExpressions.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Channels.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Channels.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Overlapped.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Overlapped.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Tasks.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Tasks.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Thread.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Thread.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.ThreadPool.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.ThreadPool.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Timer.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.Timer.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Threading.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Transactions.Local.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Transactions.Local.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Transactions.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Transactions.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.ValueTuple.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.ValueTuple.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Web.HttpUtility.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Web.HttpUtility.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Web.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Web.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Windows.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Windows.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.Linq.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.Linq.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.ReaderWriter.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.ReaderWriter.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.Serialization.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.Serialization.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XDocument.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XDocument.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XPath.XDocument.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XPath.XDocument.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XPath.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XPath.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XmlDocument.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XmlDocument.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XmlSerializer.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.XmlSerializer.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.Xml.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/System.dll", + "runtimes/win-x86/lib/netcoreapp3.1/System.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/WindowsBase.dll", + "runtimes/win-x86/lib/netcoreapp3.1/WindowsBase.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/WindowsBase.xml", + "runtimes/win-x86/lib/netcoreapp3.1/mscorlib.dll", + "runtimes/win-x86/lib/netcoreapp3.1/mscorlib.pdb", + "runtimes/win-x86/lib/netcoreapp3.1/netstandard.dll", + "runtimes/win-x86/lib/netcoreapp3.1/netstandard.pdb", + "runtimes/win-x86/native/clrcompression.dll", + "runtimes/win-x86/native/clrcompression.pdb", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.EventLog/4.7.0-preview3.19551.4": { + "sha512": "0v5YUH1GS4ZZjIHY9WLDhDuRcmpFuCKSJYa1V33hr1R7mrj5VEe4TubVupcBCRpjjaWpMfN1HJ1yK1/CsSR/0w==", + "type": "package", + "path": "system.diagnostics.eventlog/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Diagnostics.EventLog.dll", + "lib/net461/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "ref/net461/System.Diagnostics.EventLog.dll", + "ref/net461/System.Diagnostics.EventLog.xml", + "ref/net472/System.Diagnostics.EventLog.dll", + "ref/net472/System.Diagnostics.EventLog.xml", + "ref/netstandard2.0/System.Diagnostics.EventLog.dll", + "ref/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.4.7.0-preview3.19551.4.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Drawing.Common/4.7.0-preview3.19551.4": { + "sha512": "g5ObAYPAwcFKYOsAvRpiEX8++ox1oXnZcFCHkwCPKyjf3zcHercHSsiWfdGCxwMwOwoj/PF3G9D2iKu+df35Mw==", + "type": "package", + "path": "system.drawing.common/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.xml", + "ref/netstandard2.0/System.Drawing.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml", + "system.drawing.common.4.7.0-preview3.19551.4.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview3.19551.4": { + "sha512": "BU7m1FwolaGTh/+UP0SueOqXBNpcwROK7633HRNoZ9A2kBhdoi7nsKyjHLfae3GIxchV9Cxt9nDaeU2EdhPzxQ==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.4.7.0-preview3.19551.4.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Intrinsics.Experimental/4.7.0-preview3.19551.4": { + "sha512": "dtWYVemCsTgtSJ2yb1oH8sGpzD7SwbUly45kVBUkCpLaPtGHa1m052bBtLE8GMjmgIXDmB6ogcg95CUUOO+8gg==", + "type": "package", + "path": "system.runtime.intrinsics.experimental/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll", + "runtimes/unix/lib/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll", + "runtimes/unix/lib/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.xml", + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.dll", + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Intrinsics.Experimental.xml", + "system.runtime.intrinsics.experimental.4.7.0-preview3.19551.4.nupkg.sha512", + "system.runtime.intrinsics.experimental.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.AccessControl/4.7.0-preview3.19551.4": { + "sha512": "TY/z9Ng3PykLL4pgMiYlX+bJrOAz0unrmKn2nbnUBkWOq8UujFcu1ZM3nxA1HXTM4+QaSYdnLnskXgzbMwFz5g==", + "type": "package", + "path": "system.security.accesscontrol/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.4.7.0-preview3.19551.4.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Permissions/4.7.0-preview3.19551.4": { + "sha512": "m1FHbXBFdR+zRJXNrjvdybG1Bss0vwUuocZiQG0LqfoTcPD3Mjf7HPOpXnvsspHtMEyBgFLmGtQ62IFFBXzCyQ==", + "type": "package", + "path": "system.security.permissions/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/netcoreapp3.0/System.Security.Permissions.dll", + "lib/netcoreapp3.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/netcoreapp3.0/System.Security.Permissions.dll", + "ref/netcoreapp3.0/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.4.7.0-preview3.19551.4.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.7.0-preview3.19551.4": { + "sha512": "u+UxjLk5fR2ysJ6RukfzGMeRfFs67E9d1Uk1fDyg/GT7o9TbIkLHH+fVElQdNqLyyeU3KkxCiowfNbif81kCnQ==", + "type": "package", + "path": "system.security.principal.windows/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.7.0-preview3.19551.4.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Windows.Extensions/4.7.0-preview3.19551.4": { + "sha512": "V9enFEcyBw08pcJZ5+6GAc8lhLQF+4ciyZaRKwXapkdqWlrNSVdl9fWrnSFQd0QnrTT+wM0gUXMfIxkPH6pYoQ==", + "type": "package", + "path": "system.windows.extensions/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.0/System.Windows.Extensions.dll", + "lib/netcoreapp3.0/System.Windows.Extensions.xml", + "ref/netcoreapp3.0/System.Windows.Extensions.dll", + "ref/netcoreapp3.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml", + "system.windows.extensions.4.7.0-preview3.19551.4.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v3.1": [ + "Microsoft.Diagnostics.Tools.RuntimeClient >= 1.0.4-preview6.19326.1", + "Microsoft.Private.CoreFx.NETCoreApp >= 4.7.0-preview3.19551.4", + "System.Diagnostics.EventLog >= 4.7.0-preview3.19551.4", + "System.Drawing.Common >= 4.7.0-preview3.19551.4", + "System.Runtime.CompilerServices.Unsafe >= 4.7.0-preview3.19551.4", + "System.Runtime.Intrinsics.Experimental >= 4.7.0-preview3.19551.4", + "System.Security.Permissions >= 4.7.0-preview3.19551.4" + ] + }, + "packageFolders": { + "/home/z/Dev/coreclr-sec/.packages": {} + }, + "project": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/Common/test_dependencies/test_dependencies.csproj", + "projectName": "test_dependencies", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/Common/test_dependencies/test_dependencies.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/Common/test_dependencies/obj-linux-x86", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netcoreapp3.1": { + "dependencies": { + "Microsoft.Diagnostics.Tools.RuntimeClient": { + "target": "Package", + "version": "[1.0.4-preview6.19326.1, )" + }, + "Microsoft.Private.CoreFx.NETCoreApp": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Diagnostics.EventLog": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Drawing.Common": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Runtime.CompilerServices.Unsafe": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Runtime.Intrinsics.Experimental": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Security.Permissions": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + } + }, + "imports": [ + "dnxcore50", + "netcoreapp1.1", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x86": { + "#import": [] + }, + "win-arm": { + "#import": [] + }, + "win-arm64": { + "#import": [] + }, + "win-x64": { + "#import": [] + }, + "win-x86": { + "#import": [] + } + } + } +}
\ No newline at end of file diff --git a/tests/src/Common/test_dependencies/obj-linux-x86/test_dependencies.csproj.nuget.cache b/tests/src/Common/test_dependencies/obj-linux-x86/test_dependencies.csproj.nuget.cache new file mode 100644 index 0000000000..2162704c44 --- /dev/null +++ b/tests/src/Common/test_dependencies/obj-linux-x86/test_dependencies.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "fNPjqc+J+2RSOyPTRKwGxME2tMPG/4tSjeoiYYanutSwlzAJtwY+Tef2YcH2ZG9qh3THIlFab4bBskNy52H1Dw==", + "success": true +}
\ No newline at end of file diff --git a/tests/src/Common/test_dependencies/obj-linux-x86/test_dependencies.csproj.nuget.dgspec.json b/tests/src/Common/test_dependencies/obj-linux-x86/test_dependencies.csproj.nuget.dgspec.json new file mode 100644 index 0000000000..9930605eb3 --- /dev/null +++ b/tests/src/Common/test_dependencies/obj-linux-x86/test_dependencies.csproj.nuget.dgspec.json @@ -0,0 +1,94 @@ +{ + "format": 1, + "restore": { + "/home/z/Dev/coreclr-sec/tests/src/Common/test_dependencies/test_dependencies.csproj": {} + }, + "projects": { + "/home/z/Dev/coreclr-sec/tests/src/Common/test_dependencies/test_dependencies.csproj": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/Common/test_dependencies/test_dependencies.csproj", + "projectName": "test_dependencies", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/Common/test_dependencies/test_dependencies.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/Common/test_dependencies/obj-linux-x86", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netcoreapp3.1": { + "dependencies": { + "Microsoft.Diagnostics.Tools.RuntimeClient": { + "target": "Package", + "version": "[1.0.4-preview6.19326.1, )" + }, + "Microsoft.Private.CoreFx.NETCoreApp": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Diagnostics.EventLog": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Drawing.Common": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Runtime.CompilerServices.Unsafe": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Runtime.Intrinsics.Experimental": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Security.Permissions": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + } + }, + "imports": [ + "dnxcore50", + "netcoreapp1.1", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x86": { + "#import": [] + }, + "win-arm": { + "#import": [] + }, + "win-arm64": { + "#import": [] + }, + "win-x64": { + "#import": [] + }, + "win-x86": { + "#import": [] + } + } + } + } +}
\ No newline at end of file diff --git a/tests/src/Common/test_dependencies/obj-linux-x86/test_dependencies.csproj.nuget.g.props b/tests/src/Common/test_dependencies/obj-linux-x86/test_dependencies.csproj.nuget.g.props new file mode 100644 index 0000000000..a9eafdb0ac --- /dev/null +++ b/tests/src/Common/test_dependencies/obj-linux-x86/test_dependencies.csproj.nuget.g.props @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> + <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> + <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> + <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageRoot> + <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageFolders> + <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.4.0</NuGetToolVersion> + </PropertyGroup> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/Common/test_dependencies/obj-linux-x86/test_dependencies.csproj.nuget.g.targets b/tests/src/Common/test_dependencies/obj-linux-x86/test_dependencies.csproj.nuget.g.targets new file mode 100644 index 0000000000..53cfaa19b1 --- /dev/null +++ b/tests/src/Common/test_dependencies/obj-linux-x86/test_dependencies.csproj.nuget.g.targets @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/Common/test_runtime/obj-linux-x64/project.assets.json b/tests/src/Common/test_runtime/obj-linux-x64/project.assets.json new file mode 100644 index 0000000000..1ff0608e6e --- /dev/null +++ b/tests/src/Common/test_runtime/obj-linux-x64/project.assets.json @@ -0,0 +1,11771 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v3.1": { + "cijobs/0.0.1.2": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.Cli.Utils": "1.0.0-dev-1457", + "Microsoft.NETCore.App": "1.0.0", + "Newtonsoft.Json": "8.0.3", + "System.CommandLine": "0.1.0-e161117-2", + "System.Runtime.Serialization.Primitives": "4.1.1-rc3-24210-10" + }, + "compile": { + "lib/netcoreapp1.0/cijobs.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/cijobs.dll": {} + } + }, + "jit-analyze/0.0.1.1": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.Cli.Utils": "1.0.0-preview2-003121", + "Microsoft.NETCore.App": "1.0.0", + "Newtonsoft.Json": "8.0.3", + "System.CommandLine": "0.1.0-e161108-1", + "System.Runtime.Serialization.Primitives": "4.1.1-rc3-24210-10" + }, + "compile": { + "lib/netcoreapp1.0/jit-analyze.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/jit-analyze.dll": {} + } + }, + "jit-dasm/0.0.1.4": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.Cli.Utils": "1.0.0-preview2-003121", + "Microsoft.NETCore.App": "1.0.0", + "System.CommandLine": "0.1.0-e161108-1" + }, + "compile": { + "lib/netcoreapp1.0/jit-dasm.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/jit-dasm.dll": {} + } + }, + "Libuv/1.9.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1" + }, + "runtimeTargets": { + "runtimes/debian-x64/native/libuv.so": { + "assetType": "native", + "rid": "debian-x64" + }, + "runtimes/fedora-x64/native/libuv.so": { + "assetType": "native", + "rid": "fedora-x64" + }, + "runtimes/opensuse-x64/native/libuv.so": { + "assetType": "native", + "rid": "opensuse-x64" + }, + "runtimes/osx/native/libuv.dylib": { + "assetType": "native", + "rid": "osx" + }, + "runtimes/rhel-x64/native/libuv.so": { + "assetType": "native", + "rid": "rhel-x64" + }, + "runtimes/win7-arm/native/libuv.dll": { + "assetType": "native", + "rid": "win7-arm" + }, + "runtimes/win7-x64/native/libuv.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x86/native/libuv.dll": { + "assetType": "native", + "rid": "win7-x86" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "type": "package" + }, + "Microsoft.CodeAnalysis.Common/1.3.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "1.1.0", + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Collections.Immutable": "1.2.0", + "System.Console": "4.0.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.FileVersionInfo": "4.0.0", + "System.Diagnostics.StackTrace": "4.0.1", + "System.Diagnostics.Tools": "4.0.1", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Metadata": "1.3.0", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.CodePages": "4.0.1", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Parallel": "4.0.1", + "System.Threading.Thread": "4.0.0", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11", + "System.Xml.XPath.XDocument": "4.0.1", + "System.Xml.XmlDocument": "4.0.1" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.3.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.3.0]" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CodeAnalysis.VisualBasic/1.3.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "1.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.dll": {} + } + }, + "Microsoft.CSharp/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.0/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.DotNet.Cli.Utils/1.0.0-preview2-003121": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.ProjectModel": "1.0.0-rc3-003121", + "NuGet.Frameworks": "3.5.0-beta2-1484", + "NuGet.Packaging": "3.5.0-beta2-1484", + "NuGet.ProjectModel": "3.5.0-beta2-1484", + "NuGet.Versioning": "3.5.0-beta2-1484", + "System.Diagnostics.Process": "4.1.0" + }, + "compile": { + "lib/netstandard1.6/Microsoft.DotNet.Cli.Utils.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Microsoft.DotNet.Cli.Utils.dll": {} + } + }, + "Microsoft.DotNet.CoreCLR.TestDependencies/1.0.0-prerelease": { + "type": "package", + "compile": { + "lib/aspnetcore50/API-MS-Win-Base-Util-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-PrivateProfile-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-String-L2-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-StringAnsi-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-EventLog-Legacy-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Consumer-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Controller-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Legacy-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Provider-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Security-LsaPolicy-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-devices-config-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-devices-config-L1-1-1.dll": {}, + "lib/aspnetcore50/System.Core.dll": {}, + "lib/aspnetcore50/System.Xml.Linq.dll": {}, + "lib/aspnetcore50/System.Xml.dll": {}, + "lib/aspnetcore50/System.dll": {}, + "lib/aspnetcore50/api-ms-win-core-com-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-com-private-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-comm-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-console-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-console-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-datetime-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-datetime-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-debug-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-debug-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-delayload-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-errorhandling-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-errorhandling-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-fibers-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-fibers-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l1-2-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l2-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-handle-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-heap-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-heap-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-interlocked-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-io-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-io-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-libraryloader-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-libraryloader-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-l1-2-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-obsolete-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-3.dll": {}, + "lib/aspnetcore50/api-ms-win-core-namedpipe-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-normalization-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-privateprofile-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processenvironment-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processenvironment-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processsecurity-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-profile-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-psapi-ansi-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-psapi-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-psapi-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-realtime-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-registry-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-registry-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-rtlsupport-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shlwapi-legacy-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shutdown-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shutdown-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-string-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-string-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-string-obsolete-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-stringloader-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-stringloader-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-synch-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-synch-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-threadpool-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-threadpool-legacy-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-threadpool-private-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-timezone-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-url-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-util-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-version-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-error-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-error-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-registration-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-robuffer-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-string-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-wow64-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-xstate-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-xstate-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-ro-typeresolution-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-base-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-cryptoapi-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-lsalookup-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-lsalookup-l2-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-security-provider-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-sddl-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-core-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-core-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-service-management-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-management-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-private-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-private-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-service-winsvc-l1-1-0.dll": {} + }, + "runtime": { + "lib/aspnetcore50/API-MS-Win-Base-Util-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-PrivateProfile-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-String-L2-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-StringAnsi-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-EventLog-Legacy-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Consumer-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Controller-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Legacy-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Provider-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Security-LsaPolicy-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-devices-config-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-devices-config-L1-1-1.dll": {}, + "lib/aspnetcore50/System.Core.dll": {}, + "lib/aspnetcore50/System.Xml.Linq.dll": {}, + "lib/aspnetcore50/System.Xml.dll": {}, + "lib/aspnetcore50/System.dll": {}, + "lib/aspnetcore50/api-ms-win-core-com-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-com-private-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-comm-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-console-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-console-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-datetime-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-datetime-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-debug-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-debug-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-delayload-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-errorhandling-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-errorhandling-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-fibers-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-fibers-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l1-2-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l2-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-handle-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-heap-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-heap-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-interlocked-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-io-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-io-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-libraryloader-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-libraryloader-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-l1-2-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-obsolete-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-3.dll": {}, + "lib/aspnetcore50/api-ms-win-core-namedpipe-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-normalization-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-privateprofile-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processenvironment-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processenvironment-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processsecurity-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-profile-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-psapi-ansi-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-psapi-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-psapi-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-realtime-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-registry-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-registry-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-rtlsupport-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shlwapi-legacy-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shutdown-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shutdown-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-string-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-string-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-string-obsolete-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-stringloader-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-stringloader-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-synch-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-synch-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-threadpool-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-threadpool-legacy-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-threadpool-private-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-timezone-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-url-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-util-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-version-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-error-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-error-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-registration-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-robuffer-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-string-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-wow64-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-xstate-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-xstate-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-ro-typeresolution-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-base-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-cryptoapi-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-lsalookup-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-lsalookup-l2-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-security-provider-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-sddl-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-core-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-core-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-service-management-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-management-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-private-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-private-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-service-winsvc-l1-1-0.dll": {} + } + }, + "Microsoft.DotNet.InternalAbstractions/1.0.0": { + "type": "package", + "dependencies": { + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0" + }, + "compile": { + "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {} + } + }, + "Microsoft.DotNet.ProjectModel/1.0.0-rc3-003121": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1", + "Microsoft.Extensions.DependencyModel": "1.0.0", + "Newtonsoft.Json": "9.0.1", + "NuGet.Packaging": "3.5.0-beta2-1484", + "NuGet.RuntimeModel": "3.5.0-beta2-1484", + "System.Dynamic.Runtime": "4.0.11", + "System.Reflection.Metadata": "1.3.0", + "System.Runtime.Loader": "4.0.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Threading.Thread": "4.0.0", + "System.Xml.XDocument": "4.0.11" + }, + "compile": { + "lib/netstandard1.6/Microsoft.DotNet.ProjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Microsoft.DotNet.ProjectModel.dll": {} + } + }, + "Microsoft.Extensions.DependencyModel/1.0.0": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.InternalAbstractions": "1.0.0", + "Newtonsoft.Json": "9.0.1", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Linq": "4.1.0" + }, + "compile": { + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "Microsoft.NETCore.App/1.0.0": { + "type": "package", + "dependencies": { + "Libuv": "1.9.0", + "Microsoft.CSharp": "4.0.1", + "Microsoft.CodeAnalysis.CSharp": "1.3.0", + "Microsoft.CodeAnalysis.VisualBasic": "1.3.0", + "Microsoft.NETCore.DotNetHostPolicy": "1.0.1", + "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2", + "Microsoft.VisualBasic": "10.0.1", + "NETStandard.Library": "1.6.0", + "System.Buffers": "4.0.0", + "System.Collections.Immutable": "1.2.0", + "System.ComponentModel": "4.0.1", + "System.ComponentModel.Annotations": "4.1.0", + "System.Diagnostics.DiagnosticSource": "4.0.0", + "System.Diagnostics.Process": "4.1.0", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.IO.FileSystem.Watcher": "4.0.0", + "System.IO.MemoryMappedFiles": "4.0.0", + "System.IO.UnmanagedMemoryStream": "4.0.1", + "System.Linq.Expressions": "4.1.0", + "System.Linq.Parallel": "4.0.1", + "System.Linq.Queryable": "4.0.1", + "System.Net.NameResolution": "4.0.0", + "System.Net.Requests": "4.0.11", + "System.Net.Security": "4.0.0", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Numerics.Vectors": "4.1.1", + "System.Reflection.DispatchProxy": "4.0.1", + "System.Reflection.Metadata": "1.3.0", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.Reader": "4.0.0", + "System.Runtime.Loader": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Threading.Tasks.Dataflow": "4.6.0", + "System.Threading.Tasks.Extensions": "4.0.0", + "System.Threading.Tasks.Parallel": "4.0.1", + "System.Threading.Thread": "4.0.0", + "System.Threading.ThreadPool": "4.0.10" + }, + "compile": { + "lib/netcoreapp1.0/_._": {} + }, + "runtime": { + "lib/netcoreapp1.0/_._": {} + } + }, + "Microsoft.NETCore.DotNetHost/1.0.1": { + "type": "package" + }, + "Microsoft.NETCore.DotNetHostPolicy/1.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.DotNetHostResolver": "1.0.1" + } + }, + "Microsoft.NETCore.DotNetHostResolver/1.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.DotNetHost": "1.0.1" + } + }, + "Microsoft.NETCore.Jit/1.0.2": { + "type": "package" + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Jit": "1.0.2", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1" + } + }, + "Microsoft.NETCore.Targets/1.0.1": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "type": "package" + }, + "Microsoft.VisualBasic/10.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.1/Microsoft.VisualBasic.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.VisualBasic.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "NETStandard.Library/1.6.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Console": "4.0.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.IO.Compression.ZipFile": "4.0.1", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Net.Http": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.Sockets": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Timer": "4.0.1", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11" + } + }, + "Newtonsoft.Json/9.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11" + }, + "compile": { + "lib/netstandard1.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard1.0/Newtonsoft.Json.dll": {} + } + }, + "NuGet.Common/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "System.Diagnostics.Process": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Threading.Thread": "4.0.0" + }, + "compile": { + "lib/netstandard1.3/NuGet.Common.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Common.dll": {} + } + }, + "NuGet.Configuration/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Common": "3.5.0-beta2-1484", + "System.Xml.XDocument": "4.0.11" + }, + "compile": { + "lib/netstandard1.3/NuGet.Configuration.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Configuration.dll": {} + } + }, + "NuGet.DependencyResolver.Core/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Frameworks": "3.5.0-beta2-1484", + "NuGet.LibraryModel": "3.5.0-beta2-1484", + "NuGet.Protocol.Core.v3": "3.5.0-beta2-1484", + "NuGet.Repositories": "3.5.0-beta2-1484", + "NuGet.RuntimeModel": "3.5.0-beta2-1484" + }, + "compile": { + "lib/netstandard1.3/NuGet.DependencyResolver.Core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.DependencyResolver.Core.dll": {} + } + }, + "NuGet.Frameworks/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.3/NuGet.Frameworks.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Frameworks.dll": {} + } + }, + "NuGet.LibraryModel/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Frameworks": "3.5.0-beta2-1484", + "NuGet.Versioning": "3.5.0-beta2-1484" + }, + "compile": { + "lib/netstandard1.3/NuGet.LibraryModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.LibraryModel.dll": {} + } + }, + "NuGet.Packaging/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Common": "3.5.0-beta2-1484", + "NuGet.Packaging.Core": "3.5.0-beta2-1484", + "System.IO.Compression": "4.1.0" + }, + "compile": { + "lib/netstandard1.3/NuGet.Packaging.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Packaging.dll": {} + } + }, + "NuGet.Packaging.Core/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Common": "3.5.0-beta2-1484", + "NuGet.Packaging.Core.Types": "3.5.0-beta2-1484", + "System.Xml.XDocument": "4.0.11" + }, + "compile": { + "lib/netstandard1.3/NuGet.Packaging.Core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Packaging.Core.dll": {} + } + }, + "NuGet.Packaging.Core.Types/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Frameworks": "3.5.0-beta2-1484", + "NuGet.Versioning": "3.5.0-beta2-1484" + }, + "compile": { + "lib/netstandard1.3/NuGet.Packaging.Core.Types.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Packaging.Core.Types.dll": {} + } + }, + "NuGet.ProjectModel/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "Newtonsoft.Json": "6.0.4", + "NuGet.DependencyResolver.Core": "3.5.0-beta2-1484", + "System.Dynamic.Runtime": "4.0.11", + "System.Threading.Thread": "4.0.0" + }, + "compile": { + "lib/netstandard1.3/NuGet.ProjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.ProjectModel.dll": {} + } + }, + "NuGet.Protocol.Core.Types/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Common": "3.5.0-beta2-1484", + "NuGet.Configuration": "3.5.0-beta2-1484", + "NuGet.Packaging": "3.5.0-beta2-1484", + "System.Net.Http": "4.1.0" + }, + "compile": { + "lib/netstandard1.3/NuGet.Protocol.Core.Types.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Protocol.Core.Types.dll": {} + } + }, + "NuGet.Protocol.Core.v3/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "Newtonsoft.Json": "6.0.4", + "NuGet.Common": "3.5.0-beta2-1484", + "NuGet.Packaging": "3.5.0-beta2-1484", + "NuGet.Protocol.Core.Types": "3.5.0-beta2-1484", + "System.Dynamic.Runtime": "4.0.11" + }, + "compile": { + "lib/netstandard1.3/NuGet.Protocol.Core.v3.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Protocol.Core.v3.dll": {} + } + }, + "NuGet.Repositories/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Packaging": "3.5.0-beta2-1484" + }, + "compile": { + "lib/netstandard1.3/NuGet.Repositories.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Repositories.dll": {} + } + }, + "NuGet.RuntimeModel/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "Newtonsoft.Json": "6.0.4", + "NuGet.Frameworks": "3.5.0-beta2-1484", + "NuGet.Versioning": "3.5.0-beta2-1484", + "System.Dynamic.Runtime": "4.0.11", + "System.ObjectModel": "4.0.12" + }, + "compile": { + "lib/netstandard1.3/NuGet.RuntimeModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.RuntimeModel.dll": {} + } + }, + "NuGet.Versioning/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.0/NuGet.Versioning.dll": {} + }, + "runtime": { + "lib/netstandard1.0/NuGet.Versioning.dll": {} + } + }, + "runtime.native.System/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Security/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "System.AppContext/4.1.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "lib/netstandard1.1/System.Buffers.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Collections.Concurrent/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.2.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "lib/netstandard1.0/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Collections.Immutable.dll": {} + } + }, + "System.CommandLine/0.1.0-e161117-2": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "lib/netstandard1.5/System.CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.CommandLine.dll": {} + } + }, + "System.ComponentModel/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.ComponentModel": "4.0.1", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/netstandard1.4/System.ComponentModel.Annotations.dll": {} + } + }, + "System.Console/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.FileVersionInfo/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Reflection.Metadata": "1.3.0", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Process/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "Microsoft.Win32.Registry": "4.0.0", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Thread": "4.0.0", + "System.Threading.ThreadPool": "4.0.10", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.4/System.Diagnostics.Process.dll": {} + }, + "runtimeTargets": { + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.StackTrace/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections.Immutable": "1.2.0", + "System.IO.FileSystem": "4.0.1", + "System.Reflection": "4.1.0", + "System.Reflection.Metadata": "1.3.0", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.Tracing/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Dynamic.Runtime/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Globalization.Calendars/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Extensions.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.IO.Compression/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0", + "runtime.native.System.IO.Compression": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.0.1": { + "type": "package", + "dependencies": { + "System.Buffers": "4.0.0", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Overlapped": "4.0.1", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Thread": "4.0.0", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Watcher.dll": {} + }, + "runtimeTargets": { + "runtimes/linux/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.MemoryMappedFiles/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.IO.UnmanagedMemoryStream": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.MemoryMappedFiles.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.UnmanagedMemoryStream/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} + } + }, + "System.Linq/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Emit.Lightweight": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Parallel/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.1/System.Linq.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Linq.Parallel.dll": {} + } + }, + "System.Linq.Queryable/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.DiagnosticSource": "4.0.0", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.OpenSsl": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0", + "runtime.native.System.Net.Http": "4.0.1", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.NameResolution/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Principal.Windows": "4.0.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Requests/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Net.Http": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.Requests.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Security/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Claims": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.OpenSsl": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.ThreadPool": "4.0.10", + "runtime.native.System": "4.0.0", + "runtime.native.System.Net.Security": "4.0.1", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Security.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Sockets/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebHeaderCollection/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + } + }, + "System.Numerics.Vectors/4.1.1": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Numerics.Vectors.dll": {} + } + }, + "System.ObjectModel/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.DispatchProxy/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {} + } + }, + "System.Reflection.Emit/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Metadata/1.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.Immutable": "1.2.0", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "lib/netstandard1.1/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.1.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.Reader/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "lib/netstandard1.0/System.Resources.Reader.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Resources.Reader.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp80+wpa81/_._": {} + } + }, + "System.Runtime.Extensions/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime.Handles/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Loader/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.0.1": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.Claims/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Security.Principal": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Cng": "4.2.0", + "System.Security.Cryptography.Csp": "4.0.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.OpenSsl": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "runtime.native.System": "4.0.0", + "runtime.native.System.Net.Http": "4.0.1", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Principal/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Claims": "4.0.1", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.Encoding.CodePages/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding.Extensions/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.RegularExpressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.6/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Threading.Tasks/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading.Tasks.Dataflow/4.6.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Dynamic.Runtime": "4.0.11", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Thread/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Extensions": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XPath/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.dll": {} + } + }, + "System.Xml.XPath.XDocument/4.0.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11", + "System.Xml.XPath": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.XDocument.dll": {} + } + } + }, + ".NETCoreApp,Version=v3.1/linux-x64": { + "cijobs/0.0.1.2": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.Cli.Utils": "1.0.0-dev-1457", + "Microsoft.NETCore.App": "1.0.0", + "Newtonsoft.Json": "8.0.3", + "System.CommandLine": "0.1.0-e161117-2", + "System.Runtime.Serialization.Primitives": "4.1.1-rc3-24210-10" + }, + "compile": { + "lib/netcoreapp1.0/cijobs.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/cijobs.dll": {} + } + }, + "jit-analyze/0.0.1.1": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.Cli.Utils": "1.0.0-preview2-003121", + "Microsoft.NETCore.App": "1.0.0", + "Newtonsoft.Json": "8.0.3", + "System.CommandLine": "0.1.0-e161108-1", + "System.Runtime.Serialization.Primitives": "4.1.1-rc3-24210-10" + }, + "compile": { + "lib/netcoreapp1.0/jit-analyze.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/jit-analyze.dll": {} + } + }, + "jit-dasm/0.0.1.4": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.Cli.Utils": "1.0.0-preview2-003121", + "Microsoft.NETCore.App": "1.0.0", + "System.CommandLine": "0.1.0-e161108-1" + }, + "compile": { + "lib/netcoreapp1.0/jit-dasm.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/jit-dasm.dll": {} + } + }, + "Libuv/1.9.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1" + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "type": "package" + }, + "Microsoft.CodeAnalysis.Common/1.3.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "1.1.0", + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Collections.Immutable": "1.2.0", + "System.Console": "4.0.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.FileVersionInfo": "4.0.0", + "System.Diagnostics.StackTrace": "4.0.1", + "System.Diagnostics.Tools": "4.0.1", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Metadata": "1.3.0", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.CodePages": "4.0.1", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Parallel": "4.0.1", + "System.Threading.Thread": "4.0.0", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11", + "System.Xml.XPath.XDocument": "4.0.1", + "System.Xml.XmlDocument": "4.0.1" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.3.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.3.0]" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CodeAnalysis.VisualBasic/1.3.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "1.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.dll": {} + } + }, + "Microsoft.CSharp/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.0/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.DotNet.Cli.Utils/1.0.0-preview2-003121": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.ProjectModel": "1.0.0-rc3-003121", + "NuGet.Frameworks": "3.5.0-beta2-1484", + "NuGet.Packaging": "3.5.0-beta2-1484", + "NuGet.ProjectModel": "3.5.0-beta2-1484", + "NuGet.Versioning": "3.5.0-beta2-1484", + "System.Diagnostics.Process": "4.1.0" + }, + "compile": { + "lib/netstandard1.6/Microsoft.DotNet.Cli.Utils.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Microsoft.DotNet.Cli.Utils.dll": {} + } + }, + "Microsoft.DotNet.CoreCLR.TestDependencies/1.0.0-prerelease": { + "type": "package", + "compile": { + "lib/aspnetcore50/API-MS-Win-Base-Util-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-PrivateProfile-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-String-L2-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-StringAnsi-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-EventLog-Legacy-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Consumer-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Controller-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Legacy-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Provider-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Security-LsaPolicy-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-devices-config-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-devices-config-L1-1-1.dll": {}, + "lib/aspnetcore50/System.Core.dll": {}, + "lib/aspnetcore50/System.Xml.Linq.dll": {}, + "lib/aspnetcore50/System.Xml.dll": {}, + "lib/aspnetcore50/System.dll": {}, + "lib/aspnetcore50/api-ms-win-core-com-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-com-private-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-comm-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-console-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-console-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-datetime-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-datetime-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-debug-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-debug-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-delayload-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-errorhandling-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-errorhandling-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-fibers-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-fibers-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l1-2-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l2-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-handle-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-heap-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-heap-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-interlocked-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-io-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-io-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-libraryloader-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-libraryloader-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-l1-2-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-obsolete-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-3.dll": {}, + "lib/aspnetcore50/api-ms-win-core-namedpipe-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-normalization-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-privateprofile-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processenvironment-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processenvironment-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processsecurity-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-profile-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-psapi-ansi-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-psapi-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-psapi-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-realtime-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-registry-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-registry-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-rtlsupport-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shlwapi-legacy-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shutdown-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shutdown-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-string-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-string-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-string-obsolete-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-stringloader-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-stringloader-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-synch-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-synch-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-threadpool-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-threadpool-legacy-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-threadpool-private-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-timezone-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-url-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-util-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-version-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-error-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-error-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-registration-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-robuffer-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-string-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-wow64-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-xstate-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-xstate-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-ro-typeresolution-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-base-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-cryptoapi-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-lsalookup-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-lsalookup-l2-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-security-provider-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-sddl-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-core-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-core-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-service-management-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-management-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-private-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-private-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-service-winsvc-l1-1-0.dll": {} + }, + "runtime": { + "lib/aspnetcore50/API-MS-Win-Base-Util-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-PrivateProfile-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-String-L2-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-StringAnsi-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-EventLog-Legacy-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Consumer-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Controller-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Legacy-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Provider-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Security-LsaPolicy-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-devices-config-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-devices-config-L1-1-1.dll": {}, + "lib/aspnetcore50/System.Core.dll": {}, + "lib/aspnetcore50/System.Xml.Linq.dll": {}, + "lib/aspnetcore50/System.Xml.dll": {}, + "lib/aspnetcore50/System.dll": {}, + "lib/aspnetcore50/api-ms-win-core-com-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-com-private-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-comm-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-console-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-console-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-datetime-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-datetime-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-debug-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-debug-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-delayload-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-errorhandling-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-errorhandling-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-fibers-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-fibers-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l1-2-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l2-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-handle-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-heap-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-heap-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-interlocked-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-io-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-io-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-libraryloader-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-libraryloader-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-l1-2-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-obsolete-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-3.dll": {}, + "lib/aspnetcore50/api-ms-win-core-namedpipe-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-normalization-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-privateprofile-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processenvironment-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processenvironment-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processsecurity-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-profile-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-psapi-ansi-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-psapi-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-psapi-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-realtime-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-registry-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-registry-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-rtlsupport-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shlwapi-legacy-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shutdown-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shutdown-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-string-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-string-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-string-obsolete-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-stringloader-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-stringloader-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-synch-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-synch-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-threadpool-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-threadpool-legacy-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-threadpool-private-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-timezone-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-url-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-util-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-version-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-error-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-error-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-registration-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-robuffer-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-string-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-wow64-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-xstate-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-xstate-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-ro-typeresolution-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-base-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-cryptoapi-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-lsalookup-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-lsalookup-l2-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-security-provider-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-sddl-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-core-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-core-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-service-management-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-management-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-private-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-private-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-service-winsvc-l1-1-0.dll": {} + } + }, + "Microsoft.DotNet.InternalAbstractions/1.0.0": { + "type": "package", + "dependencies": { + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0" + }, + "compile": { + "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {} + } + }, + "Microsoft.DotNet.ProjectModel/1.0.0-rc3-003121": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1", + "Microsoft.Extensions.DependencyModel": "1.0.0", + "Newtonsoft.Json": "9.0.1", + "NuGet.Packaging": "3.5.0-beta2-1484", + "NuGet.RuntimeModel": "3.5.0-beta2-1484", + "System.Dynamic.Runtime": "4.0.11", + "System.Reflection.Metadata": "1.3.0", + "System.Runtime.Loader": "4.0.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Threading.Thread": "4.0.0", + "System.Xml.XDocument": "4.0.11" + }, + "compile": { + "lib/netstandard1.6/Microsoft.DotNet.ProjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Microsoft.DotNet.ProjectModel.dll": {} + } + }, + "Microsoft.Extensions.DependencyModel/1.0.0": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.InternalAbstractions": "1.0.0", + "Newtonsoft.Json": "9.0.1", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Linq": "4.1.0" + }, + "compile": { + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "Microsoft.NETCore.App/1.0.0": { + "type": "package", + "dependencies": { + "Libuv": "1.9.0", + "Microsoft.CSharp": "4.0.1", + "Microsoft.CodeAnalysis.CSharp": "1.3.0", + "Microsoft.CodeAnalysis.VisualBasic": "1.3.0", + "Microsoft.NETCore.DotNetHostPolicy": "1.0.1", + "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2", + "Microsoft.VisualBasic": "10.0.1", + "NETStandard.Library": "1.6.0", + "System.Buffers": "4.0.0", + "System.Collections.Immutable": "1.2.0", + "System.ComponentModel": "4.0.1", + "System.ComponentModel.Annotations": "4.1.0", + "System.Diagnostics.DiagnosticSource": "4.0.0", + "System.Diagnostics.Process": "4.1.0", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.IO.FileSystem.Watcher": "4.0.0", + "System.IO.MemoryMappedFiles": "4.0.0", + "System.IO.UnmanagedMemoryStream": "4.0.1", + "System.Linq.Expressions": "4.1.0", + "System.Linq.Parallel": "4.0.1", + "System.Linq.Queryable": "4.0.1", + "System.Net.NameResolution": "4.0.0", + "System.Net.Requests": "4.0.11", + "System.Net.Security": "4.0.0", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Numerics.Vectors": "4.1.1", + "System.Reflection.DispatchProxy": "4.0.1", + "System.Reflection.Metadata": "1.3.0", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.Reader": "4.0.0", + "System.Runtime.Loader": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Threading.Tasks.Dataflow": "4.6.0", + "System.Threading.Tasks.Extensions": "4.0.0", + "System.Threading.Tasks.Parallel": "4.0.1", + "System.Threading.Thread": "4.0.0", + "System.Threading.ThreadPool": "4.0.10" + }, + "compile": { + "lib/netcoreapp1.0/_._": {} + }, + "runtime": { + "lib/netcoreapp1.0/_._": {} + } + }, + "Microsoft.NETCore.DotNetHost/1.0.1": { + "type": "package" + }, + "Microsoft.NETCore.DotNetHostPolicy/1.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.DotNetHostResolver": "1.0.1" + } + }, + "Microsoft.NETCore.DotNetHostResolver/1.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.DotNetHost": "1.0.1" + } + }, + "Microsoft.NETCore.Jit/1.0.2": { + "type": "package" + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Jit": "1.0.2", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1" + } + }, + "Microsoft.NETCore.Targets/1.0.1": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "type": "package" + }, + "Microsoft.VisualBasic/10.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.1/Microsoft.VisualBasic.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.VisualBasic.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.unix.Microsoft.Win32.Primitives": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll": {} + } + }, + "NETStandard.Library/1.6.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Console": "4.0.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.IO.Compression.ZipFile": "4.0.1", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Net.Http": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.Sockets": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Timer": "4.0.1", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11" + } + }, + "Newtonsoft.Json/9.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11" + }, + "compile": { + "lib/netstandard1.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard1.0/Newtonsoft.Json.dll": {} + } + }, + "NuGet.Common/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "System.Diagnostics.Process": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Threading.Thread": "4.0.0" + }, + "compile": { + "lib/netstandard1.3/NuGet.Common.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Common.dll": {} + } + }, + "NuGet.Configuration/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Common": "3.5.0-beta2-1484", + "System.Xml.XDocument": "4.0.11" + }, + "compile": { + "lib/netstandard1.3/NuGet.Configuration.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Configuration.dll": {} + } + }, + "NuGet.DependencyResolver.Core/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Frameworks": "3.5.0-beta2-1484", + "NuGet.LibraryModel": "3.5.0-beta2-1484", + "NuGet.Protocol.Core.v3": "3.5.0-beta2-1484", + "NuGet.Repositories": "3.5.0-beta2-1484", + "NuGet.RuntimeModel": "3.5.0-beta2-1484" + }, + "compile": { + "lib/netstandard1.3/NuGet.DependencyResolver.Core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.DependencyResolver.Core.dll": {} + } + }, + "NuGet.Frameworks/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.3/NuGet.Frameworks.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Frameworks.dll": {} + } + }, + "NuGet.LibraryModel/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Frameworks": "3.5.0-beta2-1484", + "NuGet.Versioning": "3.5.0-beta2-1484" + }, + "compile": { + "lib/netstandard1.3/NuGet.LibraryModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.LibraryModel.dll": {} + } + }, + "NuGet.Packaging/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Common": "3.5.0-beta2-1484", + "NuGet.Packaging.Core": "3.5.0-beta2-1484", + "System.IO.Compression": "4.1.0" + }, + "compile": { + "lib/netstandard1.3/NuGet.Packaging.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Packaging.dll": {} + } + }, + "NuGet.Packaging.Core/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Common": "3.5.0-beta2-1484", + "NuGet.Packaging.Core.Types": "3.5.0-beta2-1484", + "System.Xml.XDocument": "4.0.11" + }, + "compile": { + "lib/netstandard1.3/NuGet.Packaging.Core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Packaging.Core.dll": {} + } + }, + "NuGet.Packaging.Core.Types/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Frameworks": "3.5.0-beta2-1484", + "NuGet.Versioning": "3.5.0-beta2-1484" + }, + "compile": { + "lib/netstandard1.3/NuGet.Packaging.Core.Types.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Packaging.Core.Types.dll": {} + } + }, + "NuGet.ProjectModel/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "Newtonsoft.Json": "6.0.4", + "NuGet.DependencyResolver.Core": "3.5.0-beta2-1484", + "System.Dynamic.Runtime": "4.0.11", + "System.Threading.Thread": "4.0.0" + }, + "compile": { + "lib/netstandard1.3/NuGet.ProjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.ProjectModel.dll": {} + } + }, + "NuGet.Protocol.Core.Types/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Common": "3.5.0-beta2-1484", + "NuGet.Configuration": "3.5.0-beta2-1484", + "NuGet.Packaging": "3.5.0-beta2-1484", + "System.Net.Http": "4.1.0" + }, + "compile": { + "lib/netstandard1.3/NuGet.Protocol.Core.Types.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Protocol.Core.Types.dll": {} + } + }, + "NuGet.Protocol.Core.v3/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "Newtonsoft.Json": "6.0.4", + "NuGet.Common": "3.5.0-beta2-1484", + "NuGet.Packaging": "3.5.0-beta2-1484", + "NuGet.Protocol.Core.Types": "3.5.0-beta2-1484", + "System.Dynamic.Runtime": "4.0.11" + }, + "compile": { + "lib/netstandard1.3/NuGet.Protocol.Core.v3.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Protocol.Core.v3.dll": {} + } + }, + "NuGet.Repositories/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Packaging": "3.5.0-beta2-1484" + }, + "compile": { + "lib/netstandard1.3/NuGet.Repositories.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Repositories.dll": {} + } + }, + "NuGet.RuntimeModel/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "Newtonsoft.Json": "6.0.4", + "NuGet.Frameworks": "3.5.0-beta2-1484", + "NuGet.Versioning": "3.5.0-beta2-1484", + "System.Dynamic.Runtime": "4.0.11", + "System.ObjectModel": "4.0.12" + }, + "compile": { + "lib/netstandard1.3/NuGet.RuntimeModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.RuntimeModel.dll": {} + } + }, + "NuGet.Versioning/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.0/NuGet.Versioning.dll": {} + }, + "runtime": { + "lib/netstandard1.0/NuGet.Versioning.dll": {} + } + }, + "runtime.any.System.Collections/4.0.11": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tools/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.Tools.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tracing/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "runtime.any.System.Globalization/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.dll": {} + } + }, + "runtime.any.System.Globalization.Calendars/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "runtime.any.System.IO/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.IO.dll": {} + } + }, + "runtime.any.System.Reflection/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.dll": {} + } + }, + "runtime.any.System.Reflection.Extensions/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Extensions.dll": {} + } + }, + "runtime.any.System.Reflection.Primitives/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Primitives.dll": {} + } + }, + "runtime.any.System.Resources.ResourceManager/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Resources.ResourceManager.dll": {} + } + }, + "runtime.any.System.Runtime/4.1.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.dll": {} + } + }, + "runtime.any.System.Runtime.Handles/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "runtime.any.System.Runtime.InteropServices/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.InteropServices.dll": {} + } + }, + "runtime.any.System.Text.Encoding/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "runtime.any.System.Text.Encoding.Extensions/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "runtime.any.System.Threading.Tasks/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "runtime.any.System.Threading.Timer/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Timer.dll": {} + } + }, + "runtime.native.System/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Security/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.unix.Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.unix.System.Console/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Console.dll": {} + } + }, + "runtime.unix.System.Diagnostics.Debug/4.0.11": { + "type": "package", + "dependencies": { + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.unix.System.IO.FileSystem/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "runtime.unix.System.Net.Primitives/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "runtime.unix.System.Net.Sockets/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Net.NameResolution": "4.0.0", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.ThreadPool": "4.0.10", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "runtime.unix.System.Private.Uri/4.0.1": { + "type": "package", + "dependencies": { + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.0/System.Private.Uri.dll": {} + } + }, + "runtime.unix.System.Runtime.Extensions/4.1.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1", + "runtime.native.System": "4.0.0", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.AppContext/4.1.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "lib/netstandard1.1/System.Buffers.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Collections": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Collections.Concurrent/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.2.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "lib/netstandard1.0/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Collections.Immutable.dll": {} + } + }, + "System.CommandLine/0.1.0-e161117-2": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "lib/netstandard1.5/System.CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.CommandLine.dll": {} + } + }, + "System.ComponentModel/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.ComponentModel": "4.0.1", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/netstandard1.4/System.ComponentModel.Annotations.dll": {} + } + }, + "System.Console/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "runtime.unix.System.Console": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.unix.System.Diagnostics.Debug": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.FileVersionInfo/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Reflection.Metadata": "1.3.0", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {} + } + }, + "System.Diagnostics.Process/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "Microsoft.Win32.Registry": "4.0.0", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Thread": "4.0.0", + "System.Threading.ThreadPool": "4.0.10", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.4/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.StackTrace/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections.Immutable": "1.2.0", + "System.IO.FileSystem": "4.0.1", + "System.Reflection": "4.1.0", + "System.Reflection.Metadata": "1.3.0", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Diagnostics.Tools": "4.0.1" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.Tracing/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Diagnostics.Tracing": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Dynamic.Runtime/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Globalization": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Globalization.Calendars/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Runtime": "4.1.0", + "runtime.any.System.Globalization.Calendars": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.any.System.IO": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.IO.Compression/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0", + "runtime.native.System.IO.Compression": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {} + } + }, + "System.IO.Compression.ZipFile/4.0.1": { + "type": "package", + "dependencies": { + "System.Buffers": "4.0.0", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.unix.System.IO.FileSystem": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Overlapped": "4.0.1", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Thread": "4.0.0", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "runtimes/linux/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.IO.MemoryMappedFiles/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.IO.UnmanagedMemoryStream": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.MemoryMappedFiles.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll": {} + } + }, + "System.IO.UnmanagedMemoryStream/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} + } + }, + "System.Linq/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Emit.Lightweight": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Parallel/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.1/System.Linq.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Linq.Parallel.dll": {} + } + }, + "System.Linq.Queryable/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.DiagnosticSource": "4.0.0", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.OpenSsl": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0", + "runtime.native.System.Net.Http": "4.0.1", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {} + } + }, + "System.Net.NameResolution/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Principal.Windows": "4.0.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {} + } + }, + "System.Net.Primitives/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "runtime.unix.System.Net.Primitives": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Requests/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Net.Http": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.Requests.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll": {} + } + }, + "System.Net.Security/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Claims": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.OpenSsl": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.ThreadPool": "4.0.10", + "runtime.native.System": "4.0.0", + "runtime.native.System.Net.Security": "4.0.1", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Security.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {} + } + }, + "System.Net.Sockets/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11", + "runtime.unix.System.Net.Sockets": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebHeaderCollection/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + } + }, + "System.Numerics.Vectors/4.1.1": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Numerics.Vectors.dll": {} + } + }, + "System.ObjectModel/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Private.Uri/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "runtime.unix.System.Private.Uri": "4.0.1" + }, + "compile": { + "ref/netstandard/_._": {} + } + }, + "System.Reflection/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Reflection": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.DispatchProxy/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {} + } + }, + "System.Reflection.Emit/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "runtime.any.System.Reflection.Extensions": "4.0.1" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Metadata/1.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.Immutable": "1.2.0", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "lib/netstandard1.1/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Reflection.Primitives": "4.0.1" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.1.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.Reader/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "lib/netstandard1.0/System.Resources.Reader.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Resources.Reader.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "runtime.any.System.Resources.ResourceManager": "4.0.1" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "runtime.any.System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp80+wpa81/_._": {} + } + }, + "System.Runtime.Extensions/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.unix.System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime.Handles/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "runtime.any.System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "System.Runtime.Loader/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.0.1": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.Claims/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Security.Principal": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Cryptography.Csp/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.OpenSsl/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Cng": "4.2.0", + "System.Security.Cryptography.Csp": "4.0.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.OpenSsl": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "runtime.native.System": "4.0.0", + "runtime.native.System.Net.Http": "4.0.1", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Claims": "4.0.1", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll": {} + } + }, + "System.Text.Encoding/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.Encoding.CodePages/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "runtime.any.System.Text.Encoding.Extensions": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.RegularExpressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.6/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading.Tasks.Dataflow/4.6.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Dynamic.Runtime": "4.0.11", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Thread/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Threading.Timer": "4.0.1" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Extensions": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XPath/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.dll": {} + } + }, + "System.Xml.XPath.XDocument/4.0.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11", + "System.Xml.XPath": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.XDocument.dll": {} + } + } + } + }, + "libraries": { + "cijobs/0.0.1.2": { + "sha512": "iNbDeDZi+B5sWNQKR+OW4PpEj/GR6Q/wPSIX3nEarSWCI3TFuyr6v+TRjen6+8LqcayBH9VWV7wWNz5W7KhGYQ==", + "type": "package", + "path": "cijobs/0.0.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "cijobs.0.0.1.2.nupkg.sha512", + "cijobs.nuspec", + "lib/netcoreapp1.0/cijobs.dll", + "lib/netcoreapp1.0/cijobs.runtimeconfig.json" + ] + }, + "jit-analyze/0.0.1.1": { + "sha512": "BStecbK+lI8dkKfkuXKttolZXxzVbnd5NSy+oZBdKm8ww+IHJ8Ox/DDHwvuVQfc+Nf0z9r1dMMOCKhXfPFcXbg==", + "type": "package", + "path": "jit-analyze/0.0.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jit-analyze.0.0.1.1.nupkg.sha512", + "jit-analyze.nuspec", + "lib/netcoreapp1.0/jit-analyze.dll", + "lib/netcoreapp1.0/jit-analyze.runtimeconfig.json" + ] + }, + "jit-dasm/0.0.1.4": { + "sha512": "Ipm3ik3mBaGj760hqc+sc6GAarPnhlaiW4R1HiCSMrytPuJ/KevEL9qG3G9CvR60S0hhZ2iVs4VZ4+pj50Lt6Q==", + "type": "package", + "path": "jit-dasm/0.0.1.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jit-dasm.0.0.1.4.nupkg.sha512", + "jit-dasm.nuspec", + "lib/netcoreapp1.0/jit-dasm.dll", + "lib/netcoreapp1.0/jit-dasm.runtimeconfig.json" + ] + }, + "Libuv/1.9.0": { + "sha512": "9Q7AaqtQhS8JDSIvRBt6ODSLWDBI4c8YxNxyCQemWebBFUtBbc6M5Vi5Gz1ZyIUlTW3rZK9bIr5gnVyv0z7a2Q==", + "type": "package", + "path": "libuv/1.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "License.txt", + "libuv.1.9.0.nupkg.sha512", + "libuv.nuspec", + "runtimes/debian-x64/native/libuv.so", + "runtimes/fedora-x64/native/libuv.so", + "runtimes/opensuse-x64/native/libuv.so", + "runtimes/osx/native/libuv.dylib", + "runtimes/rhel-x64/native/libuv.so", + "runtimes/win7-arm/native/libuv.dll", + "runtimes/win7-x64/native/libuv.dll", + "runtimes/win7-x86/native/libuv.dll" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "sha512": "HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/1.1.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.rtf", + "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", + "microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.3.0": { + "sha512": "V09G35cs0CT1C4Dr1IEOh8IGfnWALEVAOO5JXsqagxXwmYR012TlorQ+vx2eXxfZRKs3gAS/r92gN9kRBLba5A==", + "type": "package", + "path": "microsoft.codeanalysis.common/1.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/netstandard1.3/Microsoft.CodeAnalysis.dll", + "lib/netstandard1.3/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "microsoft.codeanalysis.common.1.3.0.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.3.0": { + "sha512": "BgWDIAbSFsHuGeLSn/rljLi51nXqkSo4DZ0qEIrHyPVasrhxEVq7aV8KKZ3HEfSFB+GIhBmOogE+mlOLYg19eg==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/1.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "microsoft.codeanalysis.csharp.1.3.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeAnalysis.VisualBasic/1.3.0": { + "sha512": "Sf3k8PkTkWqBmXnnblJbvb7ewO6mJzX6WO2t7m04BmOY5qBq6yhhyXnn/BMM+QCec3Arw3X35Zd8f9eBql0qgg==", + "type": "package", + "path": "microsoft.codeanalysis.visualbasic/1.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "lib/net45/Microsoft.CodeAnalysis.VisualBasic.dll", + "lib/net45/Microsoft.CodeAnalysis.VisualBasic.xml", + "lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.dll", + "lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.xml", + "microsoft.codeanalysis.visualbasic.1.3.0.nupkg.sha512", + "microsoft.codeanalysis.visualbasic.nuspec" + ] + }, + "Microsoft.CSharp/4.0.1": { + "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==", + "type": "package", + "path": "microsoft.csharp/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.0.1.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.DotNet.Cli.Utils/1.0.0-preview2-003121": { + "sha512": "FLXqhQjkjj83Sh0TRlLEyMIMtAhDRJuPRWnDONtnCv5bozk1jPzflLEXYbk2xsnsOMpnYrUvKQbwUKUWyaXuFQ==", + "type": "package", + "path": "microsoft.dotnet.cli.utils/1.0.0-preview2-003121", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net451/Microsoft.DotNet.Cli.Utils.dll", + "lib/netstandard1.6/Microsoft.DotNet.Cli.Utils.dll", + "microsoft.dotnet.cli.utils.1.0.0-preview2-003121.nupkg.sha512", + "microsoft.dotnet.cli.utils.nuspec" + ] + }, + "Microsoft.DotNet.CoreCLR.TestDependencies/1.0.0-prerelease": { + "sha512": "vz04+hDn8cLuWssbzTfJ8qhtfjkUSrGiW35crQYMy+a7pLfUbaFUiU3oDEe9maUV8/RNqsoels3MBK2vJB5Nhw==", + "type": "package", + "path": "microsoft.dotnet.coreclr.testdependencies/1.0.0-prerelease", + "files": [ + ".nupkg.metadata", + "lib/aspnetcore50/API-MS-Win-Base-Util-L1-1-0.dll", + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll", + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll", + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", + "lib/aspnetcore50/API-MS-Win-Core-PrivateProfile-L1-1-0.dll", + "lib/aspnetcore50/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll", + "lib/aspnetcore50/API-MS-Win-Core-String-L2-1-0.dll", + "lib/aspnetcore50/API-MS-Win-Core-StringAnsi-L1-1-0.dll", + "lib/aspnetcore50/API-MS-Win-EventLog-Legacy-L1-1-0.dll", + "lib/aspnetcore50/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll", + "lib/aspnetcore50/API-MS-Win-Eventing-Consumer-L1-1-0.dll", + "lib/aspnetcore50/API-MS-Win-Eventing-Controller-L1-1-0.dll", + "lib/aspnetcore50/API-MS-Win-Eventing-Legacy-L1-1-0.dll", + "lib/aspnetcore50/API-MS-Win-Eventing-Provider-L1-1-0.dll", + "lib/aspnetcore50/API-MS-Win-Security-LsaPolicy-L1-1-0.dll", + "lib/aspnetcore50/API-MS-Win-devices-config-L1-1-0.dll", + "lib/aspnetcore50/API-MS-Win-devices-config-L1-1-1.dll", + "lib/aspnetcore50/System.Core.dll", + "lib/aspnetcore50/System.Xml.Linq.dll", + "lib/aspnetcore50/System.Xml.dll", + "lib/aspnetcore50/System.dll", + "lib/aspnetcore50/api-ms-win-core-com-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-com-private-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-comm-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-console-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-console-l2-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-datetime-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-datetime-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-debug-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-debug-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-delayload-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-errorhandling-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-errorhandling-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-fibers-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-fibers-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-file-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-file-l1-2-0.dll", + "lib/aspnetcore50/api-ms-win-core-file-l1-2-1.dll", + "lib/aspnetcore50/api-ms-win-core-file-l2-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-file-l2-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-handle-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-heap-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-heap-obsolete-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-interlocked-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-io-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-io-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-2.dll", + "lib/aspnetcore50/api-ms-win-core-libraryloader-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-libraryloader-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-localization-l1-2-0.dll", + "lib/aspnetcore50/api-ms-win-core-localization-l1-2-1.dll", + "lib/aspnetcore50/api-ms-win-core-localization-l2-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-localization-obsolete-l1-2-0.dll", + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-2.dll", + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-3.dll", + "lib/aspnetcore50/api-ms-win-core-namedpipe-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-normalization-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-privateprofile-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-processenvironment-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-processenvironment-l1-2-0.dll", + "lib/aspnetcore50/api-ms-win-core-processsecurity-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-2.dll", + "lib/aspnetcore50/api-ms-win-core-profile-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-psapi-ansi-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-psapi-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-psapi-obsolete-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-realtime-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-registry-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-registry-l2-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-rtlsupport-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-shlwapi-legacy-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-shutdown-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-shutdown-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-string-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-string-obsolete-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-string-obsolete-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-stringloader-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-stringloader-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-synch-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-synch-l1-2-0.dll", + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-0.dll", + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-1.dll", + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-2.dll", + "lib/aspnetcore50/api-ms-win-core-threadpool-l1-2-0.dll", + "lib/aspnetcore50/api-ms-win-core-threadpool-legacy-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-threadpool-private-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-timezone-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-url-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-util-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-version-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-winrt-error-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-winrt-error-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-winrt-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-winrt-registration-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-winrt-robuffer-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-winrt-string-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-wow64-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-xstate-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-xstate-l2-1-0.dll", + "lib/aspnetcore50/api-ms-win-ro-typeresolution-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-security-base-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-security-cryptoapi-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-security-lsalookup-l2-1-0.dll", + "lib/aspnetcore50/api-ms-win-security-lsalookup-l2-1-1.dll", + "lib/aspnetcore50/api-ms-win-security-provider-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-security-sddl-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-service-core-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-service-core-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-service-management-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-service-management-l2-1-0.dll", + "lib/aspnetcore50/api-ms-win-service-private-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-service-private-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-service-winsvc-l1-1-0.dll", + "microsoft.dotnet.coreclr.testdependencies.1.0.0-prerelease.nupkg.sha512", + "microsoft.dotnet.coreclr.testdependencies.nuspec" + ] + }, + "Microsoft.DotNet.InternalAbstractions/1.0.0": { + "sha512": "AAguUq7YyKk3yDWPoWA8DrLZvURxB/LrDdTn1h5lmPeznkFUpfC3p459w5mQYQE0qpquf/CkSQZ0etiV5vRHFA==", + "type": "package", + "path": "microsoft.dotnet.internalabstractions/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net451/Microsoft.DotNet.InternalAbstractions.dll", + "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll", + "microsoft.dotnet.internalabstractions.1.0.0.nupkg.sha512", + "microsoft.dotnet.internalabstractions.nuspec" + ] + }, + "Microsoft.DotNet.ProjectModel/1.0.0-rc3-003121": { + "sha512": "wnWw5KsKinG2wWxdoQIJXZlMFvPNhL7WmIyW9q6xrZFUi/uld5PC3ksq2QDZepF148FUjCIyTP+TnRwU3RJqUg==", + "type": "package", + "path": "microsoft.dotnet.projectmodel/1.0.0-rc3-003121", + "files": [ + ".nupkg.metadata", + "lib/net451/Microsoft.DotNet.ProjectModel.dll", + "lib/netstandard1.6/Microsoft.DotNet.ProjectModel.dll", + "microsoft.dotnet.projectmodel.1.0.0-rc3-003121.nupkg.sha512", + "microsoft.dotnet.projectmodel.nuspec" + ] + }, + "Microsoft.Extensions.DependencyModel/1.0.0": { + "sha512": "n55Y2T4qMgCNMrJaqAN+nlG2EH4XL+e9uxIg4vdFsQeF+L8UKxRdD3C35Bt+xk3vO3Zwp3g+6KFq2VPH2COSmg==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net451/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll", + "microsoft.extensions.dependencymodel.1.0.0.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec" + ] + }, + "Microsoft.NETCore.App/1.0.0": { + "sha512": "Bv40dLDrT+Igcg1e6otW3D8voeJCfcAxOlsxSVlDz+J+cdWls5kblZvPHHvx7gX3/oJoQVIkEeO3sMyv5PSVJA==", + "type": "package", + "path": "microsoft.netcore.app/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netcoreapp1.0/_._", + "microsoft.netcore.app.1.0.0.nupkg.sha512", + "microsoft.netcore.app.nuspec" + ] + }, + "Microsoft.NETCore.DotNetHost/1.0.1": { + "sha512": "uaMgykq6AckP3hZW4dsD6zjocxyXPz0tcTl8OX7mlSUWsyFXdtf45sjdwI0JIHxt3gnI6GihAlOAwYK8HE4niQ==", + "type": "package", + "path": "microsoft.netcore.dotnethost/1.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "microsoft.netcore.dotnethost.1.0.1.nupkg.sha512", + "microsoft.netcore.dotnethost.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.DotNetHostPolicy/1.0.1": { + "sha512": "d8AQ+ZVj2iK9sbgl3IEsshCSaumhM1PNTPHxldZAQLOoI1BKF8QZ1zPCNqwBGisPiWOE3f/1SHDbQi1BTRBxuA==", + "type": "package", + "path": "microsoft.netcore.dotnethostpolicy/1.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "microsoft.netcore.dotnethostpolicy.1.0.1.nupkg.sha512", + "microsoft.netcore.dotnethostpolicy.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.DotNetHostResolver/1.0.1": { + "sha512": "GEXgpAHB9E0OhfcmNJ664Xcd2bJkz2qkGIAFmCgEI5ANlQy4qEEmBVfUqA+Z9HB85ZwWxZc1eIJ6fxdxcjrctg==", + "type": "package", + "path": "microsoft.netcore.dotnethostresolver/1.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "microsoft.netcore.dotnethostresolver.1.0.1.nupkg.sha512", + "microsoft.netcore.dotnethostresolver.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Jit/1.0.2": { + "sha512": "Ok2vWofa6X8WD9vc4pfLHwvJz1/B6t3gOAoZcjrjrQf7lQOlNIuZIZtLn3wnWX28DuQGpPJkRlBxFj7Z5txNqw==", + "type": "package", + "path": "microsoft.netcore.jit/1.0.2", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "microsoft.netcore.jit.1.0.2.nupkg.sha512", + "microsoft.netcore.jit.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "sha512": "Clr2Jue6oyBlnsVf9g5qjoi06+QDYVq+U32buU9W+mRYeIFg4LXeJei1q6P/1niiKX8WIVo7KbBnqW80jVcOvw==", + "type": "package", + "path": "microsoft.netcore.platforms/3.1.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.3.1.0-preview3.19551.4.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { + "sha512": "A0x1xtTjYJWZr2DRzgfCOXgB0JkQg8twnmtTJ79wFje+IihlLbXtx6Z2AxyVokBM5ruwTedR6YdCmHk39QJdtQ==", + "type": "package", + "path": "microsoft.netcore.runtime.coreclr/1.0.2", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "microsoft.netcore.runtime.coreclr.1.0.2.nupkg.sha512", + "microsoft.netcore.runtime.coreclr.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Targets/1.0.1": { + "sha512": "rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==", + "type": "package", + "path": "microsoft.netcore.targets/1.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.0.1.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "sha512": "SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", + "type": "package", + "path": "microsoft.netcore.windows.apisets/1.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512", + "microsoft.netcore.windows.apisets.nuspec", + "runtime.json" + ] + }, + "Microsoft.VisualBasic/10.0.1": { + "sha512": "HpNyOf/4Tp2lh4FyywB55VITk0SqVxEjDzsVDDyF1yafDN6Bq18xcHowzCPINyYHUTgGcEtmpYiRsFdSo0KKdQ==", + "type": "package", + "path": "microsoft.visualbasic/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net45/_._", + "lib/netcore50/Microsoft.VisualBasic.dll", + "lib/netstandard1.3/Microsoft.VisualBasic.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "microsoft.visualbasic.10.0.1.nupkg.sha512", + "microsoft.visualbasic.nuspec", + "ref/net45/_._", + "ref/netcore50/Microsoft.VisualBasic.dll", + "ref/netcore50/Microsoft.VisualBasic.xml", + "ref/netcore50/de/Microsoft.VisualBasic.xml", + "ref/netcore50/es/Microsoft.VisualBasic.xml", + "ref/netcore50/fr/Microsoft.VisualBasic.xml", + "ref/netcore50/it/Microsoft.VisualBasic.xml", + "ref/netcore50/ja/Microsoft.VisualBasic.xml", + "ref/netcore50/ko/Microsoft.VisualBasic.xml", + "ref/netcore50/ru/Microsoft.VisualBasic.xml", + "ref/netcore50/zh-hans/Microsoft.VisualBasic.xml", + "ref/netcore50/zh-hant/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/Microsoft.VisualBasic.dll", + "ref/netstandard1.1/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/de/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/es/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/fr/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/it/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/ja/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/ko/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/ru/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/zh-hans/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/zh-hant/Microsoft.VisualBasic.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._" + ] + }, + "Microsoft.Win32.Primitives/4.0.1": { + "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==", + "type": "package", + "path": "microsoft.win32.primitives/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.0.1.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Win32.Registry/4.0.0": { + "sha512": "q+eLtROUAQ3OxYA5mpQrgyFgzLQxIyrfT2eLpYX5IEPlHmIio2nh4F5bgOaQoGOV865kFKZZso9Oq9RlazvXtg==", + "type": "package", + "path": "microsoft.win32.registry/4.0.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/Microsoft.Win32.Registry.dll", + "microsoft.win32.registry.4.0.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll" + ] + }, + "NETStandard.Library/1.6.0": { + "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==", + "type": "package", + "path": "netstandard.library/1.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.0.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/9.0.1": { + "sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==", + "type": "package", + "path": "newtonsoft.json/9.0.1", + "hasTools": true, + "files": [ + ".nupkg.metadata", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml", + "newtonsoft.json.9.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "tools/install.ps1" + ] + }, + "NuGet.Common/3.5.0-beta2-1484": { + "sha512": "rLBmcZOPVF7Mne/LumDNACZZyI5B67hjylt+Z/WSEUQ/IXE9nLv8IVL0+T9xljIaSSQCjO8cOtmJ6ztqrsQKcQ==", + "type": "package", + "path": "nuget.common/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/NuGet.Common.dll", + "lib/net45/NuGet.Common.xml", + "lib/netstandard1.3/NuGet.Common.dll", + "lib/netstandard1.3/NuGet.Common.xml", + "nuget.common.3.5.0-beta2-1484.nupkg.sha512", + "nuget.common.nuspec" + ] + }, + "NuGet.Configuration/3.5.0-beta2-1484": { + "sha512": "ee2jhTjPMztWmUIuaM1pdVRytXO7n8V/ZlENzJ/uTsZcnAbPZZLasAUoKJf7kKacBNTfSHd1MmWII/YweHWPGQ==", + "type": "package", + "path": "nuget.configuration/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/NuGet.Configuration.dll", + "lib/net45/NuGet.Configuration.xml", + "lib/netstandard1.3/NuGet.Configuration.dll", + "lib/netstandard1.3/NuGet.Configuration.xml", + "nuget.configuration.3.5.0-beta2-1484.nupkg.sha512", + "nuget.configuration.nuspec" + ] + }, + "NuGet.DependencyResolver.Core/3.5.0-beta2-1484": { + "sha512": "C33r3vl2eMbo3YFi7mKMnyFBSVzXxaQA045913UpQQi6oIFkNn8m9Ozztbfv7wQXQGlG+ftopObFE/Ig5I2e8Q==", + "type": "package", + "path": "nuget.dependencyresolver.core/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/NuGet.DependencyResolver.Core.dll", + "lib/net45/NuGet.DependencyResolver.Core.xml", + "lib/netstandard1.3/NuGet.DependencyResolver.Core.dll", + "lib/netstandard1.3/NuGet.DependencyResolver.Core.xml", + "nuget.dependencyresolver.core.3.5.0-beta2-1484.nupkg.sha512", + "nuget.dependencyresolver.core.nuspec" + ] + }, + "NuGet.Frameworks/3.5.0-beta2-1484": { + "sha512": "AZoX0c05qgSfx0IOGTbLXa2fD7eM2WUqKP3osMMvSxK+tOGmctHuFlvjXxMHBv9yg0/13KdH0osV/zI7+SjzOA==", + "type": "package", + "path": "nuget.frameworks/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net40-client/NuGet.Frameworks.dll", + "lib/net40-client/NuGet.Frameworks.xml", + "lib/net45/NuGet.Frameworks.dll", + "lib/net45/NuGet.Frameworks.xml", + "lib/netstandard1.3/NuGet.Frameworks.dll", + "lib/netstandard1.3/NuGet.Frameworks.xml", + "nuget.frameworks.3.5.0-beta2-1484.nupkg.sha512", + "nuget.frameworks.nuspec" + ] + }, + "NuGet.LibraryModel/3.5.0-beta2-1484": { + "sha512": "DliyPvB2O5sLAjhlBceACSm6fzzPDoWRdzbs/7Z89TWqp2JRQ98I5ds5HzeMJjfqO6t1BYoCVDV0h1ymoTuyVQ==", + "type": "package", + "path": "nuget.librarymodel/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/NuGet.LibraryModel.dll", + "lib/net45/NuGet.LibraryModel.xml", + "lib/netstandard1.3/NuGet.LibraryModel.dll", + "lib/netstandard1.3/NuGet.LibraryModel.xml", + "nuget.librarymodel.3.5.0-beta2-1484.nupkg.sha512", + "nuget.librarymodel.nuspec" + ] + }, + "NuGet.Packaging/3.5.0-beta2-1484": { + "sha512": "/+7d3vvCel4KhJo6AyOneg07fbAkUsy/ORgIaxW3nNdJubCXSrAdg1wfQpwzBygmErjrPcdYzzk2y2Sc6m7hwQ==", + "type": "package", + "path": "nuget.packaging/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/NuGet.Packaging.dll", + "lib/net45/NuGet.Packaging.xml", + "lib/netstandard1.3/NuGet.Packaging.dll", + "lib/netstandard1.3/NuGet.Packaging.xml", + "nuget.packaging.3.5.0-beta2-1484.nupkg.sha512", + "nuget.packaging.nuspec" + ] + }, + "NuGet.Packaging.Core/3.5.0-beta2-1484": { + "sha512": "Lsz2lgYH0mdOvuL8C3G4XLm9EaAheBOqrgLgnBNxCeLGLU+n+Zu8Lt6K1bpzgkeKyTyAhJdWbv/3lS4w7s04gw==", + "type": "package", + "path": "nuget.packaging.core/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/NuGet.Packaging.Core.dll", + "lib/net45/NuGet.Packaging.Core.xml", + "lib/netstandard1.3/NuGet.Packaging.Core.dll", + "lib/netstandard1.3/NuGet.Packaging.Core.xml", + "nuget.packaging.core.3.5.0-beta2-1484.nupkg.sha512", + "nuget.packaging.core.nuspec" + ] + }, + "NuGet.Packaging.Core.Types/3.5.0-beta2-1484": { + "sha512": "4mEXZBoe/RKTDVQGwdrl/f5gqolU2d1JWjpbGdQv5EG/xQCC8IQ8FTNYzk0+ydV/vuRM1yaNe+6UQ90nGE+1kQ==", + "type": "package", + "path": "nuget.packaging.core.types/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/NuGet.Packaging.Core.Types.dll", + "lib/net45/NuGet.Packaging.Core.Types.xml", + "lib/netstandard1.3/NuGet.Packaging.Core.Types.dll", + "lib/netstandard1.3/NuGet.Packaging.Core.Types.xml", + "nuget.packaging.core.types.3.5.0-beta2-1484.nupkg.sha512", + "nuget.packaging.core.types.nuspec" + ] + }, + "NuGet.ProjectModel/3.5.0-beta2-1484": { + "sha512": "7SFxD1wBRusat8rJm/hICDues0Fm9ECNJLaxbzq6xdPBBN3NljGMp3V3ZeyEose6ItetqPBY9+ZcKhiPIsmx6A==", + "type": "package", + "path": "nuget.projectmodel/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/NuGet.ProjectModel.dll", + "lib/net45/NuGet.ProjectModel.xml", + "lib/netstandard1.3/NuGet.ProjectModel.dll", + "lib/netstandard1.3/NuGet.ProjectModel.xml", + "nuget.projectmodel.3.5.0-beta2-1484.nupkg.sha512", + "nuget.projectmodel.nuspec" + ] + }, + "NuGet.Protocol.Core.Types/3.5.0-beta2-1484": { + "sha512": "y+HMFeV4/vqryIhRQATC1HZvE9QOGgOwesCUWlVAY24yi4HcTTVWWSv0WVX8OzJj+uobYWVfICFyC28JnuMEoA==", + "type": "package", + "path": "nuget.protocol.core.types/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/NuGet.Protocol.Core.Types.dll", + "lib/net45/NuGet.Protocol.Core.Types.xml", + "lib/netstandard1.3/NuGet.Protocol.Core.Types.dll", + "lib/netstandard1.3/NuGet.Protocol.Core.Types.xml", + "nuget.protocol.core.types.3.5.0-beta2-1484.nupkg.sha512", + "nuget.protocol.core.types.nuspec" + ] + }, + "NuGet.Protocol.Core.v3/3.5.0-beta2-1484": { + "sha512": "DsLSsObYuTF9CJ22/ti5femoz1H5zZiQ5SjnZjhoNrz26Af0M9y3fcLvJGTFO7xPDU6QC1G9lZ0fNW7ucH/GpQ==", + "type": "package", + "path": "nuget.protocol.core.v3/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/NuGet.Protocol.Core.v3.dll", + "lib/net45/NuGet.Protocol.Core.v3.xml", + "lib/netstandard1.3/NuGet.Protocol.Core.v3.dll", + "lib/netstandard1.3/NuGet.Protocol.Core.v3.xml", + "nuget.protocol.core.v3.3.5.0-beta2-1484.nupkg.sha512", + "nuget.protocol.core.v3.nuspec" + ] + }, + "NuGet.Repositories/3.5.0-beta2-1484": { + "sha512": "+3ozgJleYPKL2VG44XRzVyFGu8dLOIJ2Kohg2VY87DzTJEnH3kLOMhudZERowNxxzfJpwiSDUXNsDNiWH4EujA==", + "type": "package", + "path": "nuget.repositories/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/NuGet.Repositories.dll", + "lib/net45/NuGet.Repositories.xml", + "lib/netstandard1.3/NuGet.Repositories.dll", + "lib/netstandard1.3/NuGet.Repositories.xml", + "nuget.repositories.3.5.0-beta2-1484.nupkg.sha512", + "nuget.repositories.nuspec" + ] + }, + "NuGet.RuntimeModel/3.5.0-beta2-1484": { + "sha512": "vg29WbKcExD9AJrKMr7NB9pnp+0MTAcDHB6gFHCqRynSo6jgjC8q+ZPAlxC115rQiO8fqzOEP59Q8hx20anUtA==", + "type": "package", + "path": "nuget.runtimemodel/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/NuGet.RuntimeModel.dll", + "lib/net45/NuGet.RuntimeModel.xml", + "lib/netstandard1.3/NuGet.RuntimeModel.dll", + "lib/netstandard1.3/NuGet.RuntimeModel.xml", + "nuget.runtimemodel.3.5.0-beta2-1484.nupkg.sha512", + "nuget.runtimemodel.nuspec" + ] + }, + "NuGet.Versioning/3.5.0-beta2-1484": { + "sha512": "Stok+SI5lWxOkTgZZM7jT4xuAZogm5+j85mKJeHSXb8o0OAbB+qDX9jkdM2wIEnjoR8R29J0nQYwk2Kl2lWFpA==", + "type": "package", + "path": "nuget.versioning/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/NuGet.Versioning.dll", + "lib/net45/NuGet.Versioning.xml", + "lib/netstandard1.0/NuGet.Versioning.dll", + "lib/netstandard1.0/NuGet.Versioning.xml", + "nuget.versioning.3.5.0-beta2-1484.nupkg.sha512", + "nuget.versioning.nuspec" + ] + }, + "runtime.any.System.Collections/4.0.11": { + "sha512": "MTBT/hu37Dm2042H1JjWSaMd8w+oPJ4ZWAbDNeLzC4ZHdqwHloP07KvD6+4VbwipDqY5obfFFy90mZYCaPDh5Q==", + "type": "package", + "path": "runtime.any.system.collections/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.dll", + "lib/netstandard1.3/System.Collections.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.collections.4.0.11.nupkg.sha512", + "runtime.any.system.collections.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Diagnostics.Tools/4.0.1": { + "sha512": "GJkwEYbKw7qG29QrKMIEEZEGWxC+DQboeObhaM6WPKKgwk9Od8Qt8lWhr/+5xW3FF60TdMfjjUP8Zu6Y41wIkA==", + "type": "package", + "path": "runtime.any.system.diagnostics.tools/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/netstandard1.3/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tools.4.0.1.nupkg.sha512", + "runtime.any.system.diagnostics.tools.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Diagnostics.Tracing/4.1.0": { + "sha512": "x7VLOl/v504jX97YEMePamZRHA3cJPOFY/xLw9pgjDr0Q3IQIZ+0K4oiKKtQrfMYSvOAntkzw+EvvQ+OWGRL9w==", + "type": "package", + "path": "runtime.any.system.diagnostics.tracing/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "lib/netstandard1.5/System.Diagnostics.Tracing.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tracing.4.1.0.nupkg.sha512", + "runtime.any.system.diagnostics.tracing.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Globalization/4.0.11": { + "sha512": "cjJ3+b83Tpf02AIc5FkGj1vzY68RnsVHiGLrOCc5n7gpNVg1JnZrt1mcY99ykQ/wr3nCdvSP2pYvdxbYsxZdlA==", + "type": "package", + "path": "runtime.any.system.globalization/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Globalization.dll", + "lib/netstandard1.3/System.Globalization.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.4.0.11.nupkg.sha512", + "runtime.any.system.globalization.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Globalization.Calendars/4.0.1": { + "sha512": "SAdVwIKKKR3VG9NMKEgF+wbAKkQA60YOb4G9YGj4EUPsuwS+pH7FjjG6qQeXDyOaxUcrlRzI3LHcGloX/GHBxQ==", + "type": "package", + "path": "runtime.any.system.globalization.calendars/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net/_._", + "lib/netcore50/System.Globalization.Calendars.dll", + "lib/netstandard1.3/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.calendars.4.0.1.nupkg.sha512", + "runtime.any.system.globalization.calendars.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.IO/4.1.0": { + "sha512": "sC7zKVdhYQEtrREKBJf4zkUwNdi6fsbkzrhJLDIAxIxD+YA5PABAQJps13zxpA1Ke3AgzOA9551JDymAfmRuTg==", + "type": "package", + "path": "runtime.any.system.io/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.IO.dll", + "lib/netstandard1.5/System.IO.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.io.4.1.0.nupkg.sha512", + "runtime.any.system.io.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Reflection/4.1.0": { + "sha512": "eKq6/GprEINYbugjWf2V9cjkyuAH/y+Raed28PJQ35zd30oR/pvKEHNN8JbPAgzYpI09TCd1yuhXN/Rb8PM8GA==", + "type": "package", + "path": "runtime.any.system.reflection/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.dll", + "lib/netstandard1.5/System.Reflection.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.4.1.0.nupkg.sha512", + "runtime.any.system.reflection.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Reflection.Extensions/4.0.1": { + "sha512": "ajAAD1MHX4KSNq/CW0d1IMlq5seVTuzTMMhA5EFWagMejfamzljIL92/wD19eK/1mPuux5nb16K4PFBYQrZOrQ==", + "type": "package", + "path": "runtime.any.system.reflection.extensions/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/netstandard1.3/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.extensions.4.0.1.nupkg.sha512", + "runtime.any.system.reflection.extensions.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Reflection.Primitives/4.0.1": { + "sha512": "oKs78h11WDhCGFNpxT26IqL8Oo8OBzr6YOW0WG+R14FGaB/WDM5UHiK/jr6dipdnO8Wxlg/U48ka6uaPM6l53w==", + "type": "package", + "path": "runtime.any.system.reflection.primitives/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/netstandard1.3/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.primitives.4.0.1.nupkg.sha512", + "runtime.any.system.reflection.primitives.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Resources.ResourceManager/4.0.1": { + "sha512": "hes7WFTOERydB/hLGmLj66NbK7I2AnjLHEeTpf7EmPZOIrRWeuC1dPoFYC9XRVIVzfCcOZI7oXM7KXe4vakt9Q==", + "type": "package", + "path": "runtime.any.system.resources.resourcemanager/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/netstandard1.3/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.resources.resourcemanager.4.0.1.nupkg.sha512", + "runtime.any.system.resources.resourcemanager.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Runtime/4.1.0": { + "sha512": "0QVLwEGXROl0Trt2XosEjly9uqXcjHKStoZyZG9twJYFZJqq2JJXcBMXl/fnyQAgYEEODV8lUsU+t7NCCY0nUQ==", + "type": "package", + "path": "runtime.any.system.runtime/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.dll", + "lib/netstandard1.5/System.Runtime.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.4.1.0.nupkg.sha512", + "runtime.any.system.runtime.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Runtime.Handles/4.0.1": { + "sha512": "MZ5fVmAE/3S11wt3hPfn3RsAHppj5gUz+VZuLQkRjLCMSlX0krOI601IZsMWc3CoxUb+wMt3gZVb/mEjblw6Mg==", + "type": "package", + "path": "runtime.any.system.runtime.handles/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netstandard1.3/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.handles.4.0.1.nupkg.sha512", + "runtime.any.system.runtime.handles.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Runtime.InteropServices/4.1.0": { + "sha512": "gmibdZ9x/eB6hf5le33DWLCQbhcIUD2vqoc0tBgqSUWlB8YjEzVJXyTPDO+ypKLlL90Kv3ZDrK7yPCNqcyhqCA==", + "type": "package", + "path": "runtime.any.system.runtime.interopservices/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "lib/netstandard1.5/System.Runtime.InteropServices.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.interopservices.4.1.0.nupkg.sha512", + "runtime.any.system.runtime.interopservices.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Text.Encoding/4.0.11": { + "sha512": "uweRMRDD4O8Iy8m4h1cJvoFIHNCzHMpipuxkRNAMML6EMzAhDCQTjgvRwki7PlUg8RGY1ctXnBZjT1rXvMZuRw==", + "type": "package", + "path": "runtime.any.system.text.encoding/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/netstandard1.3/System.Text.Encoding.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.4.0.11.nupkg.sha512", + "runtime.any.system.text.encoding.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Text.Encoding.Extensions/4.0.11": { + "sha512": "3n6qbf59NMgA7F9S+q9gmqFV7T/CtAZw2pa6aprfdZxUinR2mDvVchsgthoacpQvAQu6e3ok8WWeypSu/yjXrA==", + "type": "package", + "path": "runtime.any.system.text.encoding.extensions/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.extensions.4.0.11.nupkg.sha512", + "runtime.any.system.text.encoding.extensions.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Threading.Tasks/4.0.11": { + "sha512": "CEvWO0IwtdCAsmCb9aAl59psy0hzx+whYh4DzbjNb0GsQmxw/G7bZEcrBtE8c9QupNVbu87c2xaMi6p4r1bpjA==", + "type": "package", + "path": "runtime.any.system.threading.tasks/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/netstandard1.3/System.Threading.Tasks.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.tasks.4.0.11.nupkg.sha512", + "runtime.any.system.threading.tasks.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Threading.Timer/4.0.1": { + "sha512": "C9d5eRAW/gd5iBZF78JRcwjvjCDRfU0oB48/wx/XbKnONZU4k6hWneTT4M7v3TmVqPFl7UDcLzKCtQ/24efOzw==", + "type": "package", + "path": "runtime.any.system.threading.timer/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/netstandard1.3/System.Threading.Timer.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.timer.4.0.1.nupkg.sha512", + "runtime.any.system.threading.timer.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.native.System/4.0.0": { + "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==", + "type": "package", + "path": "runtime.native.system/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.0.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.IO.Compression/4.1.0": { + "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==", + "type": "package", + "path": "runtime.native.system.io.compression/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.1.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.0.1": { + "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==", + "type": "package", + "path": "runtime.native.system.net.http/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.0.1.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Net.Security/4.0.1": { + "sha512": "Az6Ff6rZFb8nYGAaejFR6jr8ktt9f3e1Q/yKdw0pwHNTLaO/1eCAC9vzBoR9YAb0QeZD6fZXl1A9tRB5stpzXA==", + "type": "package", + "path": "runtime.native.system.net.security/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.security.4.0.1.nupkg.sha512", + "runtime.native.system.net.security.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography/4.0.0": { + "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==", + "type": "package", + "path": "runtime.native.system.security.cryptography/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512", + "runtime.native.system.security.cryptography.nuspec" + ] + }, + "runtime.unix.Microsoft.Win32.Primitives/4.0.1": { + "sha512": "dcdSZXTbbjgER84+V+WCUt2JLsN8VwpeGljqD+4qIAgf1sUdz6EvknOa5HTv7iuo4EpRHQo8uqfRrLr9G8TyLA==", + "type": "package", + "path": "runtime.unix.microsoft.win32.primitives/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.microsoft.win32.primitives.4.0.1.nupkg.sha512", + "runtime.unix.microsoft.win32.primitives.nuspec", + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Primitives.dll" + ] + }, + "runtime.unix.System.Console/4.0.0": { + "sha512": "OV2TOJkDPXRbp1hhmKV0/U6ZtDQY2SL/VJMs89R9PlH+ZyrbMRF8coT5ZC6m0LsmCDc25AlHyjegIIg+lWVwTw==", + "type": "package", + "path": "runtime.unix.system.console/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.console.4.0.0.nupkg.sha512", + "runtime.unix.system.console.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Console.dll" + ] + }, + "runtime.unix.System.Diagnostics.Debug/4.0.11": { + "sha512": "dGIYWbyqSlMlZrsqtU/TdvVNp8lieqowdGBVMi6nFTIiCqrL+RbdiJORguexXNjHtFZR30eE6zPWGxuL60NYFw==", + "type": "package", + "path": "runtime.unix.system.diagnostics.debug/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.diagnostics.debug.4.0.11.nupkg.sha512", + "runtime.unix.system.diagnostics.debug.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.Debug.dll" + ] + }, + "runtime.unix.System.IO.FileSystem/4.0.1": { + "sha512": "7dft+dHYKOXOAnXExVE6OGmifNnSDCrJymApD0l6t2bZUdpai66La9dNqT2eqPhiQXVR3eV61gzkfaIEsuK0pA==", + "type": "package", + "path": "runtime.unix.system.io.filesystem/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.io.filesystem.4.0.1.nupkg.sha512", + "runtime.unix.system.io.filesystem.nuspec", + "runtimes/unix/lib/netstandard1.3/System.IO.FileSystem.dll" + ] + }, + "runtime.unix.System.Net.Primitives/4.0.11": { + "sha512": "lGTv6mxF1cOKzTKMww/c2qubIgjZbD5hzAjCgLnwjCaMpB+MPsm6OsjDRh3kPlQMNdUdlQOQ7pTRrze0DhlASQ==", + "type": "package", + "path": "runtime.unix.system.net.primitives/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.net.primitives.4.0.11.nupkg.sha512", + "runtime.unix.system.net.primitives.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Net.Primitives.dll" + ] + }, + "runtime.unix.System.Net.Sockets/4.1.0": { + "sha512": "bwBMwAyzHZubcjmSGKEv5FQGZw3AT4ydLpc+q5K7l3vOopV0xBqUp7nBg8QMh+ZT4qzog14LBztz+auluh4KLg==", + "type": "package", + "path": "runtime.unix.system.net.sockets/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.net.sockets.4.1.0.nupkg.sha512", + "runtime.unix.system.net.sockets.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Net.Sockets.dll" + ] + }, + "runtime.unix.System.Private.Uri/4.0.1": { + "sha512": "m+7TLWWw4cA44vGxcKpMdV2Lgx6HWOe5rUb5RIADE04S6fJNEwXO6u+KY7oWFJQYn5644NyhSxB9oV28fF94NQ==", + "type": "package", + "path": "runtime.unix.system.private.uri/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.private.uri.4.0.1.nupkg.sha512", + "runtime.unix.system.private.uri.nuspec", + "runtimes/unix/lib/netstandard1.0/System.Private.Uri.dll" + ] + }, + "runtime.unix.System.Runtime.Extensions/4.1.0": { + "sha512": "ouVt2t9k22LcC9HeNX4mu3Ebvp1h+IPKaYiU3tDtOW9YcMR62XQyHsPq5BjBjMHuxjBRL5Hz+BwhSdrY6HjacA==", + "type": "package", + "path": "runtime.unix.system.runtime.extensions/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.runtime.extensions.4.1.0.nupkg.sha512", + "runtime.unix.system.runtime.extensions.nuspec", + "runtimes/unix/lib/netstandard1.5/System.Runtime.Extensions.dll" + ] + }, + "System.AppContext/4.1.0": { + "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==", + "type": "package", + "path": "system.appcontext/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.1.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.0.0": { + "sha512": "msXumHfjjURSkvxUjYuq4N2ghHoRi2VpXcKMA7gK6ujQfU3vGpl+B6ld0ATRg+FZFpRyA6PgEPA+VlIkTeNf2w==", + "type": "package", + "path": "system.buffers/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/.xml", + "lib/netstandard1.1/System.Buffers.dll", + "system.buffers.4.0.0.nupkg.sha512", + "system.buffers.nuspec" + ] + }, + "System.Collections/4.0.11": { + "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==", + "type": "package", + "path": "system.collections/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.0.11.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.12": { + "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==", + "type": "package", + "path": "system.collections.concurrent/4.0.12", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.0.12.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.2.0": { + "sha512": "Cma8cBW6di16ZLibL8LYQ+cLjGzoKxpOTu/faZfDcx94ZjAGq6Nv5RO7+T1YZXqEXTZP9rt1wLVEONVpURtUqw==", + "type": "package", + "path": "system.collections.immutable/1.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.0/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.1.2.0.nupkg.sha512", + "system.collections.immutable.nuspec" + ] + }, + "System.CommandLine/0.1.0-e161117-2": { + "sha512": "HPy545O9J9+lSYzIyHBw86Iyo2scQiwQ1A74xUGAuQS5aNnp0xD4rjl5SsqKQnldyUp3hRcJ4u3CDxusqc5CYQ==", + "type": "package", + "path": "system.commandline/0.1.0-e161117-2", + "files": [ + ".nupkg.metadata", + "lib/net45/System.CommandLine.dll", + "lib/netstandard1.5/System.CommandLine.dll", + "system.commandline.0.1.0-e161117-2.nupkg.sha512", + "system.commandline.nuspec" + ] + }, + "System.ComponentModel/4.0.1": { + "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==", + "type": "package", + "path": "system.componentmodel/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.4.0.1.nupkg.sha512", + "system.componentmodel.nuspec" + ] + }, + "System.ComponentModel.Annotations/4.1.0": { + "sha512": "rhnz80h8NnHJzoi0nbQJLRR2cJznyqG168q1bgoSpe5qpaME2SguXzuEzpY68nFCi2kBgHpbU4bRN2cP3unYRA==", + "type": "package", + "path": "system.componentmodel.annotations/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.4.1.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec" + ] + }, + "System.Console/4.0.0": { + "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==", + "type": "package", + "path": "system.console/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.0.0.nupkg.sha512", + "system.console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.11": { + "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==", + "type": "package", + "path": "system.diagnostics.debug/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.0.11.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/4.0.0": { + "sha512": "YKglnq4BMTJxfcr6nuT08g+yJ0UxdePIHxosiLuljuHIUR6t4KhFsyaHOaOc1Ofqp0PUvJ0EmcgiEz6T7vEx3w==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec" + ] + }, + "System.Diagnostics.FileVersionInfo/4.0.0": { + "sha512": "qjF74OTAU+mRhLaL4YSfiWy3vj6T3AOz8AW37l5zCwfbBfj0k7E94XnEsRaf2TnhE/7QaV6Hvqakoy2LoV8MVg==", + "type": "package", + "path": "system.diagnostics.fileversioninfo/4.0.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.FileVersionInfo.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.FileVersionInfo.dll", + "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.dll", + "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/de/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/es/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/fr/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/it/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/ja/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/ko/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/ru/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.FileVersionInfo.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win/lib/net46/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win/lib/netcore50/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll", + "system.diagnostics.fileversioninfo.4.0.0.nupkg.sha512", + "system.diagnostics.fileversioninfo.nuspec" + ] + }, + "System.Diagnostics.Process/4.1.0": { + "sha512": "mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==", + "type": "package", + "path": "system.diagnostics.process/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.Process.dll", + "lib/net461/System.Diagnostics.Process.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.Process.dll", + "ref/net461/System.Diagnostics.Process.dll", + "ref/netstandard1.3/System.Diagnostics.Process.dll", + "ref/netstandard1.3/System.Diagnostics.Process.xml", + "ref/netstandard1.3/de/System.Diagnostics.Process.xml", + "ref/netstandard1.3/es/System.Diagnostics.Process.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Process.xml", + "ref/netstandard1.3/it/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Process.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Process.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Process.xml", + "ref/netstandard1.4/System.Diagnostics.Process.dll", + "ref/netstandard1.4/System.Diagnostics.Process.xml", + "ref/netstandard1.4/de/System.Diagnostics.Process.xml", + "ref/netstandard1.4/es/System.Diagnostics.Process.xml", + "ref/netstandard1.4/fr/System.Diagnostics.Process.xml", + "ref/netstandard1.4/it/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ja/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ko/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ru/System.Diagnostics.Process.xml", + "ref/netstandard1.4/zh-hans/System.Diagnostics.Process.xml", + "ref/netstandard1.4/zh-hant/System.Diagnostics.Process.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/win/lib/net46/System.Diagnostics.Process.dll", + "runtimes/win/lib/net461/System.Diagnostics.Process.dll", + "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/win7/lib/netcore50/_._", + "system.diagnostics.process.4.1.0.nupkg.sha512", + "system.diagnostics.process.nuspec" + ] + }, + "System.Diagnostics.StackTrace/4.0.1": { + "sha512": "6i2EbRq0lgGfiZ+FDf0gVaw9qeEU+7IS2+wbZJmFVpvVzVOgZEt0ScZtyenuBvs6iDYbGiF51bMAa0oDP/tujQ==", + "type": "package", + "path": "system.diagnostics.stacktrace/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.StackTrace.dll", + "lib/netstandard1.3/System.Diagnostics.StackTrace.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.StackTrace.dll", + "ref/netstandard1.3/System.Diagnostics.StackTrace.dll", + "ref/netstandard1.3/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/de/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/es/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/fr/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/it/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/ja/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/ko/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/ru/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.StackTrace.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll", + "system.diagnostics.stacktrace.4.0.1.nupkg.sha512", + "system.diagnostics.stacktrace.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.1": { + "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==", + "type": "package", + "path": "system.diagnostics.tools/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.0.1.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.1.0": { + "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==", + "type": "package", + "path": "system.diagnostics.tracing/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.1.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.11": { + "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==", + "type": "package", + "path": "system.dynamic.runtime/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.0.11.nupkg.sha512", + "system.dynamic.runtime.nuspec" + ] + }, + "System.Globalization/4.0.11": { + "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==", + "type": "package", + "path": "system.globalization/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.0.11.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.1": { + "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==", + "type": "package", + "path": "system.globalization.calendars/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.0.1.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.0.1": { + "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==", + "type": "package", + "path": "system.globalization.extensions/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.0.1.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IO/4.1.0": { + "sha512": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==", + "type": "package", + "path": "system.io/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.1.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Compression/4.1.0": { + "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==", + "type": "package", + "path": "system.io.compression/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.1.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.0.1": { + "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==", + "type": "package", + "path": "system.io.compression.zipfile/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.0.1.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.0.1": { + "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==", + "type": "package", + "path": "system.io.filesystem/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.0.1.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.1": { + "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==", + "type": "package", + "path": "system.io.filesystem.primitives/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.0.1.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0": { + "sha512": "qM4Wr3La+RYb/03B0mZZjbA7tHsGzDffnuXP8Sl48HW2JwCjn3kfD5qdw0sqyNNowUipcJMi9/q6sMUrOIJ6UQ==", + "type": "package", + "path": "system.io.filesystem.watcher/4.0.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "ref/netstandard1.3/System.IO.FileSystem.Watcher.dll", + "ref/netstandard1.3/System.IO.FileSystem.Watcher.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Watcher.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Watcher.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Watcher.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Watcher.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Watcher.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Watcher.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Watcher.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Watcher.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Watcher.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/linux/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll", + "runtimes/osx/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll", + "runtimes/win/lib/net46/System.IO.FileSystem.Watcher.dll", + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll", + "runtimes/win7/lib/netcore50/_._", + "system.io.filesystem.watcher.4.0.0.nupkg.sha512", + "system.io.filesystem.watcher.nuspec" + ] + }, + "System.IO.MemoryMappedFiles/4.0.0": { + "sha512": "Xqj4xaFAnLVpss9ZSUIvB/VdJAA7GxZDnFGDKJfiGAnZ5VnFROn6eOHWepFpujCYTsh6wlZ3B33bqYkF0QJ7Eg==", + "type": "package", + "path": "system.io.memorymappedfiles/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.MemoryMappedFiles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.MemoryMappedFiles.dll", + "ref/netstandard1.3/System.IO.MemoryMappedFiles.dll", + "ref/netstandard1.3/System.IO.MemoryMappedFiles.xml", + "ref/netstandard1.3/de/System.IO.MemoryMappedFiles.xml", + "ref/netstandard1.3/es/System.IO.MemoryMappedFiles.xml", + "ref/netstandard1.3/fr/System.IO.MemoryMappedFiles.xml", + "ref/netstandard1.3/it/System.IO.MemoryMappedFiles.xml", + "ref/netstandard1.3/ja/System.IO.MemoryMappedFiles.xml", + "ref/netstandard1.3/ko/System.IO.MemoryMappedFiles.xml", + "ref/netstandard1.3/ru/System.IO.MemoryMappedFiles.xml", + "ref/netstandard1.3/zh-hans/System.IO.MemoryMappedFiles.xml", + "ref/netstandard1.3/zh-hant/System.IO.MemoryMappedFiles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll", + "runtimes/win/lib/net46/System.IO.MemoryMappedFiles.dll", + "runtimes/win/lib/netcore50/System.IO.MemoryMappedFiles.dll", + "runtimes/win/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll", + "system.io.memorymappedfiles.4.0.0.nupkg.sha512", + "system.io.memorymappedfiles.nuspec" + ] + }, + "System.IO.UnmanagedMemoryStream/4.0.1": { + "sha512": "wcq0kXcpfJwdl1Y4/ZjDk7Dhx5HdLyRYYWYmD8Nn8skoGYYQd2BQWbXwjWSczip8AL4Z57o2dWWXAl4aABAKiQ==", + "type": "package", + "path": "system.io.unmanagedmemorystream/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.UnmanagedMemoryStream.dll", + "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.UnmanagedMemoryStream.dll", + "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll", + "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.xml", + "ref/netstandard1.3/de/System.IO.UnmanagedMemoryStream.xml", + "ref/netstandard1.3/es/System.IO.UnmanagedMemoryStream.xml", + "ref/netstandard1.3/fr/System.IO.UnmanagedMemoryStream.xml", + "ref/netstandard1.3/it/System.IO.UnmanagedMemoryStream.xml", + "ref/netstandard1.3/ja/System.IO.UnmanagedMemoryStream.xml", + "ref/netstandard1.3/ko/System.IO.UnmanagedMemoryStream.xml", + "ref/netstandard1.3/ru/System.IO.UnmanagedMemoryStream.xml", + "ref/netstandard1.3/zh-hans/System.IO.UnmanagedMemoryStream.xml", + "ref/netstandard1.3/zh-hant/System.IO.UnmanagedMemoryStream.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.unmanagedmemorystream.4.0.1.nupkg.sha512", + "system.io.unmanagedmemorystream.nuspec" + ] + }, + "System.Linq/4.1.0": { + "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==", + "type": "package", + "path": "system.linq/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.1.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.1.0": { + "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==", + "type": "package", + "path": "system.linq.expressions/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.1.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Linq.Parallel/4.0.1": { + "sha512": "J7XCa7n2cFn32uLbtceXfBFhgCk5M++50lylHKNbqTiJkw5y4Tglpi6amuJNPCvj9bLzNSI7rs1fi4joLMNRgg==", + "type": "package", + "path": "system.linq.parallel/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Linq.Parallel.dll", + "lib/netstandard1.3/System.Linq.Parallel.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Linq.Parallel.dll", + "ref/netcore50/System.Linq.Parallel.xml", + "ref/netcore50/de/System.Linq.Parallel.xml", + "ref/netcore50/es/System.Linq.Parallel.xml", + "ref/netcore50/fr/System.Linq.Parallel.xml", + "ref/netcore50/it/System.Linq.Parallel.xml", + "ref/netcore50/ja/System.Linq.Parallel.xml", + "ref/netcore50/ko/System.Linq.Parallel.xml", + "ref/netcore50/ru/System.Linq.Parallel.xml", + "ref/netcore50/zh-hans/System.Linq.Parallel.xml", + "ref/netcore50/zh-hant/System.Linq.Parallel.xml", + "ref/netstandard1.1/System.Linq.Parallel.dll", + "ref/netstandard1.1/System.Linq.Parallel.xml", + "ref/netstandard1.1/de/System.Linq.Parallel.xml", + "ref/netstandard1.1/es/System.Linq.Parallel.xml", + "ref/netstandard1.1/fr/System.Linq.Parallel.xml", + "ref/netstandard1.1/it/System.Linq.Parallel.xml", + "ref/netstandard1.1/ja/System.Linq.Parallel.xml", + "ref/netstandard1.1/ko/System.Linq.Parallel.xml", + "ref/netstandard1.1/ru/System.Linq.Parallel.xml", + "ref/netstandard1.1/zh-hans/System.Linq.Parallel.xml", + "ref/netstandard1.1/zh-hant/System.Linq.Parallel.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.parallel.4.0.1.nupkg.sha512", + "system.linq.parallel.nuspec" + ] + }, + "System.Linq.Queryable/4.0.1": { + "sha512": "Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==", + "type": "package", + "path": "system.linq.queryable/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Linq.Queryable.dll", + "lib/netstandard1.3/System.Linq.Queryable.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Linq.Queryable.dll", + "ref/netcore50/System.Linq.Queryable.xml", + "ref/netcore50/de/System.Linq.Queryable.xml", + "ref/netcore50/es/System.Linq.Queryable.xml", + "ref/netcore50/fr/System.Linq.Queryable.xml", + "ref/netcore50/it/System.Linq.Queryable.xml", + "ref/netcore50/ja/System.Linq.Queryable.xml", + "ref/netcore50/ko/System.Linq.Queryable.xml", + "ref/netcore50/ru/System.Linq.Queryable.xml", + "ref/netcore50/zh-hans/System.Linq.Queryable.xml", + "ref/netcore50/zh-hant/System.Linq.Queryable.xml", + "ref/netstandard1.0/System.Linq.Queryable.dll", + "ref/netstandard1.0/System.Linq.Queryable.xml", + "ref/netstandard1.0/de/System.Linq.Queryable.xml", + "ref/netstandard1.0/es/System.Linq.Queryable.xml", + "ref/netstandard1.0/fr/System.Linq.Queryable.xml", + "ref/netstandard1.0/it/System.Linq.Queryable.xml", + "ref/netstandard1.0/ja/System.Linq.Queryable.xml", + "ref/netstandard1.0/ko/System.Linq.Queryable.xml", + "ref/netstandard1.0/ru/System.Linq.Queryable.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.queryable.4.0.1.nupkg.sha512", + "system.linq.queryable.nuspec" + ] + }, + "System.Net.Http/4.1.0": { + "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==", + "type": "package", + "path": "system.net.http/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.1.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.NameResolution/4.0.0": { + "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==", + "type": "package", + "path": "system.net.nameresolution/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.NameResolution.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.xml", + "ref/netstandard1.3/de/System.Net.NameResolution.xml", + "ref/netstandard1.3/es/System.Net.NameResolution.xml", + "ref/netstandard1.3/fr/System.Net.NameResolution.xml", + "ref/netstandard1.3/it/System.Net.NameResolution.xml", + "ref/netstandard1.3/ja/System.Net.NameResolution.xml", + "ref/netstandard1.3/ko/System.Net.NameResolution.xml", + "ref/netstandard1.3/ru/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", + "runtimes/win/lib/net46/System.Net.NameResolution.dll", + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll", + "system.net.nameresolution.4.0.0.nupkg.sha512", + "system.net.nameresolution.nuspec" + ] + }, + "System.Net.Primitives/4.0.11": { + "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==", + "type": "package", + "path": "system.net.primitives/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.0.11.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Requests/4.0.11": { + "sha512": "vxGt7C0cZixN+VqoSW4Yakc1Y9WknmxauDqzxgpw/FnBdz4kQNN51l4wxdXX5VY1xjqy//+G+4CvJWp1+f+y6Q==", + "type": "package", + "path": "system.net.requests/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/_._", + "ref/netcore50/System.Net.Requests.dll", + "ref/netcore50/System.Net.Requests.xml", + "ref/netcore50/de/System.Net.Requests.xml", + "ref/netcore50/es/System.Net.Requests.xml", + "ref/netcore50/fr/System.Net.Requests.xml", + "ref/netcore50/it/System.Net.Requests.xml", + "ref/netcore50/ja/System.Net.Requests.xml", + "ref/netcore50/ko/System.Net.Requests.xml", + "ref/netcore50/ru/System.Net.Requests.xml", + "ref/netcore50/zh-hans/System.Net.Requests.xml", + "ref/netcore50/zh-hant/System.Net.Requests.xml", + "ref/netstandard1.0/System.Net.Requests.dll", + "ref/netstandard1.0/System.Net.Requests.xml", + "ref/netstandard1.0/de/System.Net.Requests.xml", + "ref/netstandard1.0/es/System.Net.Requests.xml", + "ref/netstandard1.0/fr/System.Net.Requests.xml", + "ref/netstandard1.0/it/System.Net.Requests.xml", + "ref/netstandard1.0/ja/System.Net.Requests.xml", + "ref/netstandard1.0/ko/System.Net.Requests.xml", + "ref/netstandard1.0/ru/System.Net.Requests.xml", + "ref/netstandard1.0/zh-hans/System.Net.Requests.xml", + "ref/netstandard1.0/zh-hant/System.Net.Requests.xml", + "ref/netstandard1.1/System.Net.Requests.dll", + "ref/netstandard1.1/System.Net.Requests.xml", + "ref/netstandard1.1/de/System.Net.Requests.xml", + "ref/netstandard1.1/es/System.Net.Requests.xml", + "ref/netstandard1.1/fr/System.Net.Requests.xml", + "ref/netstandard1.1/it/System.Net.Requests.xml", + "ref/netstandard1.1/ja/System.Net.Requests.xml", + "ref/netstandard1.1/ko/System.Net.Requests.xml", + "ref/netstandard1.1/ru/System.Net.Requests.xml", + "ref/netstandard1.1/zh-hans/System.Net.Requests.xml", + "ref/netstandard1.1/zh-hant/System.Net.Requests.xml", + "ref/netstandard1.3/System.Net.Requests.dll", + "ref/netstandard1.3/System.Net.Requests.xml", + "ref/netstandard1.3/de/System.Net.Requests.xml", + "ref/netstandard1.3/es/System.Net.Requests.xml", + "ref/netstandard1.3/fr/System.Net.Requests.xml", + "ref/netstandard1.3/it/System.Net.Requests.xml", + "ref/netstandard1.3/ja/System.Net.Requests.xml", + "ref/netstandard1.3/ko/System.Net.Requests.xml", + "ref/netstandard1.3/ru/System.Net.Requests.xml", + "ref/netstandard1.3/zh-hans/System.Net.Requests.xml", + "ref/netstandard1.3/zh-hant/System.Net.Requests.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll", + "runtimes/win/lib/net46/_._", + "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll", + "system.net.requests.4.0.11.nupkg.sha512", + "system.net.requests.nuspec" + ] + }, + "System.Net.Security/4.0.0": { + "sha512": "uM1JaYJciCc2w7efD6du0EpQ1n5ZQqE6/P43/aI4H5E59qvP+wt3l70KIUF/Ha7NaeXGoGNFPVO0MB80pVHk2g==", + "type": "package", + "path": "system.net.security/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Security.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Security.dll", + "ref/netstandard1.3/System.Net.Security.dll", + "ref/netstandard1.3/System.Net.Security.xml", + "ref/netstandard1.3/de/System.Net.Security.xml", + "ref/netstandard1.3/es/System.Net.Security.xml", + "ref/netstandard1.3/fr/System.Net.Security.xml", + "ref/netstandard1.3/it/System.Net.Security.xml", + "ref/netstandard1.3/ja/System.Net.Security.xml", + "ref/netstandard1.3/ko/System.Net.Security.xml", + "ref/netstandard1.3/ru/System.Net.Security.xml", + "ref/netstandard1.3/zh-hans/System.Net.Security.xml", + "ref/netstandard1.3/zh-hant/System.Net.Security.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll", + "runtimes/win/lib/net46/System.Net.Security.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Security.dll", + "runtimes/win7/lib/netcore50/_._", + "system.net.security.4.0.0.nupkg.sha512", + "system.net.security.nuspec" + ] + }, + "System.Net.Sockets/4.1.0": { + "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==", + "type": "package", + "path": "system.net.sockets/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.1.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.Net.WebHeaderCollection/4.0.1": { + "sha512": "XX2TIAN+wBSAIV51BU2FvvXMdstUa8b0FBSZmDWjZdwUMmggQSifpTOZ5fNH20z9ZCg2fkV1L5SsZnpO2RQDRQ==", + "type": "package", + "path": "system.net.webheadercollection/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netstandard1.3/System.Net.WebHeaderCollection.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Net.WebHeaderCollection.dll", + "ref/netstandard1.3/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/de/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/es/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/fr/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/it/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/ja/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/ko/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/ru/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/zh-hans/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/zh-hant/System.Net.WebHeaderCollection.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.webheadercollection.4.0.1.nupkg.sha512", + "system.net.webheadercollection.nuspec" + ] + }, + "System.Numerics.Vectors/4.1.1": { + "sha512": "Ex1NSKycC2wi5XBMWUGWPc3lumh6OQWFFmmpZFZz0oLht5lQ+wWPHVZumOrMJuckfUiVMd4p67BrkBos8lcF+Q==", + "type": "package", + "path": "system.numerics.vectors/4.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Numerics.Vectors.dll", + "ref/net46/System.Numerics.Vectors.xml", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.numerics.vectors.4.1.1.nupkg.sha512", + "system.numerics.vectors.nuspec" + ] + }, + "System.ObjectModel/4.0.12": { + "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==", + "type": "package", + "path": "system.objectmodel/4.0.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.0.12.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Private.Uri/4.0.1": { + "sha512": "OltceAn9yyNf9LZIqvf80DhdRH55iVu1fxowdR79018w1CWIRNojUZBStsiRHvADeKI5pXcM9EftOFikBQh5AA==", + "type": "package", + "path": "system.private.uri/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "system.private.uri.4.0.1.nupkg.sha512", + "system.private.uri.nuspec" + ] + }, + "System.Reflection/4.1.0": { + "sha512": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==", + "type": "package", + "path": "system.reflection/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.1.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.DispatchProxy/4.0.1": { + "sha512": "GPPgWoSxQEU3aCKSOvsAc1dhTTi4iq92PUVEVfnGPGwqCf6synaAJGYLKMs5E3CuRfel8ufACWUijXqDpOlGrA==", + "type": "package", + "path": "system.reflection.dispatchproxy/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netstandard1.3/System.Reflection.DispatchProxy.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.3/System.Reflection.DispatchProxy.dll", + "ref/netstandard1.3/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll", + "system.reflection.dispatchproxy.4.0.1.nupkg.sha512", + "system.reflection.dispatchproxy.nuspec" + ] + }, + "System.Reflection.Emit/4.0.1": { + "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==", + "type": "package", + "path": "system.reflection.emit/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinmac20/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.0.1.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.0.1.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.1": { + "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==", + "type": "package", + "path": "system.reflection.extensions/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.0.1.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.3.0": { + "sha512": "jMSCxA4LSyKBGRDm/WtfkO03FkcgRzHxwvQRib1bm2GZ8ifKM1MX1al6breGCEQK280mdl9uQS7JNPXRYk90jw==", + "type": "package", + "path": "system.reflection.metadata/1.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.1.3.0.nupkg.sha512", + "system.reflection.metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.1": { + "sha512": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==", + "type": "package", + "path": "system.reflection.primitives/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.0.1.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.1.0": { + "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==", + "type": "package", + "path": "system.reflection.typeextensions/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.1.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.Reader/4.0.0": { + "sha512": "VX1iHAoHxgrLZv+nq/9drCZI6Q4SSCzSVyUm1e0U60sqWdj6XhY7wvKmy3RvsSal9h+/vqSWwxxJsm0J4vn/jA==", + "type": "package", + "path": "system.resources.reader/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Resources.Reader.dll", + "system.resources.reader.4.0.0.nupkg.sha512", + "system.resources.reader.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.1": { + "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==", + "type": "package", + "path": "system.resources.resourcemanager/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.0.1.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.1.0": { + "sha512": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==", + "type": "package", + "path": "system.runtime/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.1.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.1.0": { + "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==", + "type": "package", + "path": "system.runtime.extensions/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.1.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.1": { + "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==", + "type": "package", + "path": "system.runtime.handles/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.0.1.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.1.0": { + "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==", + "type": "package", + "path": "system.runtime.interopservices/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.1.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { + "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0": { + "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==", + "type": "package", + "path": "system.runtime.loader/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net462/_._", + "lib/netstandard1.5/System.Runtime.Loader.dll", + "ref/netstandard1.5/System.Runtime.Loader.dll", + "ref/netstandard1.5/System.Runtime.Loader.xml", + "ref/netstandard1.5/de/System.Runtime.Loader.xml", + "ref/netstandard1.5/es/System.Runtime.Loader.xml", + "ref/netstandard1.5/fr/System.Runtime.Loader.xml", + "ref/netstandard1.5/it/System.Runtime.Loader.xml", + "ref/netstandard1.5/ja/System.Runtime.Loader.xml", + "ref/netstandard1.5/ko/System.Runtime.Loader.xml", + "ref/netstandard1.5/ru/System.Runtime.Loader.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml", + "system.runtime.loader.4.0.0.nupkg.sha512", + "system.runtime.loader.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.1": { + "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==", + "type": "package", + "path": "system.runtime.numerics/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.0.1.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.1.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Primitives.dll", + "lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "system.runtime.serialization.primitives.4.1.1.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec" + ] + }, + "System.Security.Claims/4.0.1": { + "sha512": "4Jlp0OgJLS/Voj1kyFP6MJlIYp3crgfH8kNQk2p7+4JYfc1aAmh9PZyAMMbDhuoolGNtux9HqSOazsioRiDvCw==", + "type": "package", + "path": "system.security.claims/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/netstandard1.3/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.xml", + "ref/netstandard1.3/de/System.Security.Claims.xml", + "ref/netstandard1.3/es/System.Security.Claims.xml", + "ref/netstandard1.3/fr/System.Security.Claims.xml", + "ref/netstandard1.3/it/System.Security.Claims.xml", + "ref/netstandard1.3/ja/System.Security.Claims.xml", + "ref/netstandard1.3/ko/System.Security.Claims.xml", + "ref/netstandard1.3/ru/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hans/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hant/System.Security.Claims.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.claims.4.0.1.nupkg.sha512", + "system.security.claims.nuspec" + ] + }, + "System.Security.Cryptography.Algorithms/4.2.0": { + "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.2.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.2.0": { + "sha512": "cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==", + "type": "package", + "path": "system.security.cryptography.cng/4.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net463/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net463/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "system.security.cryptography.cng.4.2.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.0.0": { + "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==", + "type": "package", + "path": "system.security.cryptography.csp/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.0.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0": { + "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==", + "type": "package", + "path": "system.security.cryptography.encoding/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.0.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.0.0": { + "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==", + "type": "package", + "path": "system.security.cryptography.openssl/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.0.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.0.0": { + "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==", + "type": "package", + "path": "system.security.cryptography.primitives/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.0.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.1.0": { + "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.1": { + "sha512": "On+SKhXY5rzxh/S8wlH1Rm0ogBlu7zyHNxeNBiXauNrhHRXAe9EuX8Yl5IOzLPGU5Z4kLWHMvORDOCG8iu9hww==", + "type": "package", + "path": "system.security.principal/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/netstandard1.0/System.Security.Principal.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/netcore50/de/System.Security.Principal.xml", + "ref/netcore50/es/System.Security.Principal.xml", + "ref/netcore50/fr/System.Security.Principal.xml", + "ref/netcore50/it/System.Security.Principal.xml", + "ref/netcore50/ja/System.Security.Principal.xml", + "ref/netcore50/ko/System.Security.Principal.xml", + "ref/netcore50/ru/System.Security.Principal.xml", + "ref/netcore50/zh-hans/System.Security.Principal.xml", + "ref/netcore50/zh-hant/System.Security.Principal.xml", + "ref/netstandard1.0/System.Security.Principal.dll", + "ref/netstandard1.0/System.Security.Principal.xml", + "ref/netstandard1.0/de/System.Security.Principal.xml", + "ref/netstandard1.0/es/System.Security.Principal.xml", + "ref/netstandard1.0/fr/System.Security.Principal.xml", + "ref/netstandard1.0/it/System.Security.Principal.xml", + "ref/netstandard1.0/ja/System.Security.Principal.xml", + "ref/netstandard1.0/ko/System.Security.Principal.xml", + "ref/netstandard1.0/ru/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hans/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hant/System.Security.Principal.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.principal.4.0.1.nupkg.sha512", + "system.security.principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.0.0": { + "sha512": "iFx15AF3RMEPZn3COh8+Bb2Thv2zsmLd93RchS1b8Mj5SNYeGqbYNCSn5AES1+gq56p4ujGZPrl0xN7ngkXOHg==", + "type": "package", + "path": "system.security.principal.windows/4.0.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "system.security.principal.windows.4.0.0.nupkg.sha512", + "system.security.principal.windows.nuspec" + ] + }, + "System.Text.Encoding/4.0.11": { + "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==", + "type": "package", + "path": "system.text.encoding/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.0.11.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/4.0.1": { + "sha512": "h4z6rrA/hxWf4655D18IIZ0eaLRa3tQC/j+e26W+VinIHY0l07iEXaAvO0YSYq3MvCjMYy8Zs5AdC1sxNQOB7Q==", + "type": "package", + "path": "system.text.encoding.codepages/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.3/System.Text.Encoding.CodePages.dll", + "ref/netstandard1.3/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "system.text.encoding.codepages.4.0.1.nupkg.sha512", + "system.text.encoding.codepages.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.11": { + "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==", + "type": "package", + "path": "system.text.encoding.extensions/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.0.11.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.1.0": { + "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==", + "type": "package", + "path": "system.text.regularexpressions/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.1.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.0.11": { + "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==", + "type": "package", + "path": "system.threading/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.0.11.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.1": { + "sha512": "f7aLuLkBoCQM2kng7zqLFBXz9Gk48gDK8lk1ih9rH/1arJJzZK9gJwNvPDhL6Ps/l6rwOr8jw+4FCHL0KKWiEg==", + "type": "package", + "path": "system.threading.overlapped/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "ref/netstandard1.3/System.Threading.Overlapped.dll", + "ref/netstandard1.3/System.Threading.Overlapped.xml", + "ref/netstandard1.3/de/System.Threading.Overlapped.xml", + "ref/netstandard1.3/es/System.Threading.Overlapped.xml", + "ref/netstandard1.3/fr/System.Threading.Overlapped.xml", + "ref/netstandard1.3/it/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ja/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ko/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ru/System.Threading.Overlapped.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml", + "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll", + "runtimes/win/lib/net46/System.Threading.Overlapped.dll", + "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll", + "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll", + "system.threading.overlapped.4.0.1.nupkg.sha512", + "system.threading.overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.11": { + "sha512": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==", + "type": "package", + "path": "system.threading.tasks/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.0.11.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Dataflow/4.6.0": { + "sha512": "2hRjGu2r2jxRZ55wmcHO/WbdX+YAOz9x6FE8xqkHZgPaoFMKQZRe9dk8xTZIas8fRjxRmzawnTEWIrhlM+Un7w==", + "type": "package", + "path": "system.threading.tasks.dataflow/4.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Dataflow.XML", + "lib/netstandard1.0/System.Threading.Tasks.Dataflow.dll", + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.XML", + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll", + "system.threading.tasks.dataflow.4.6.0.nupkg.sha512", + "system.threading.tasks.dataflow.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.0.0": { + "sha512": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==", + "type": "package", + "path": "system.threading.tasks.extensions/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "system.threading.tasks.extensions.4.0.0.nupkg.sha512", + "system.threading.tasks.extensions.nuspec" + ] + }, + "System.Threading.Tasks.Parallel/4.0.1": { + "sha512": "7Pc9t25bcynT9FpMvkUw4ZjYwUiGup/5cJFW72/5MgCG+np2cfVUMdh29u8d7onxX7d8PS3J+wL73zQRqkdrSA==", + "type": "package", + "path": "system.threading.tasks.parallel/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.Parallel.dll", + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.Parallel.dll", + "ref/netcore50/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/de/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/es/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/it/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll", + "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.parallel.4.0.1.nupkg.sha512", + "system.threading.tasks.parallel.nuspec" + ] + }, + "System.Threading.Thread/4.0.0": { + "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==", + "type": "package", + "path": "system.threading.thread/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.Thread.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.Thread.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.Thread.dll", + "ref/netstandard1.3/System.Threading.Thread.dll", + "ref/netstandard1.3/System.Threading.Thread.xml", + "ref/netstandard1.3/de/System.Threading.Thread.xml", + "ref/netstandard1.3/es/System.Threading.Thread.xml", + "ref/netstandard1.3/fr/System.Threading.Thread.xml", + "ref/netstandard1.3/it/System.Threading.Thread.xml", + "ref/netstandard1.3/ja/System.Threading.Thread.xml", + "ref/netstandard1.3/ko/System.Threading.Thread.xml", + "ref/netstandard1.3/ru/System.Threading.Thread.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.thread.4.0.0.nupkg.sha512", + "system.threading.thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10": { + "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==", + "type": "package", + "path": "system.threading.threadpool/4.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.ThreadPool.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.ThreadPool.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/de/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/es/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/it/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.threadpool.4.0.10.nupkg.sha512", + "system.threading.threadpool.nuspec" + ] + }, + "System.Threading.Timer/4.0.1": { + "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==", + "type": "package", + "path": "system.threading.timer/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.0.1.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.11": { + "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==", + "type": "package", + "path": "system.xml.readerwriter/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.0.11.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.11": { + "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==", + "type": "package", + "path": "system.xml.xdocument/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.0.11.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.0.1": { + "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==", + "type": "package", + "path": "system.xml.xmldocument/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.0.1.nupkg.sha512", + "system.xml.xmldocument.nuspec" + ] + }, + "System.Xml.XPath/4.0.1": { + "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==", + "type": "package", + "path": "system.xml.xpath/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XPath.dll", + "lib/netstandard1.3/System.Xml.XPath.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XPath.dll", + "ref/netstandard1.3/System.Xml.XPath.dll", + "ref/netstandard1.3/System.Xml.XPath.xml", + "ref/netstandard1.3/de/System.Xml.XPath.xml", + "ref/netstandard1.3/es/System.Xml.XPath.xml", + "ref/netstandard1.3/fr/System.Xml.XPath.xml", + "ref/netstandard1.3/it/System.Xml.XPath.xml", + "ref/netstandard1.3/ja/System.Xml.XPath.xml", + "ref/netstandard1.3/ko/System.Xml.XPath.xml", + "ref/netstandard1.3/ru/System.Xml.XPath.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xpath.4.0.1.nupkg.sha512", + "system.xml.xpath.nuspec" + ] + }, + "System.Xml.XPath.XDocument/4.0.1": { + "sha512": "FLhdYJx4331oGovQypQ8JIw2kEmNzCsjVOVYY/16kZTUoquZG85oVn7yUhBE2OZt1yGPSXAL0HTEfzjlbNpM7Q==", + "type": "package", + "path": "system.xml.xpath.xdocument/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XPath.XDocument.dll", + "lib/netstandard1.3/System.Xml.XPath.XDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XPath.XDocument.dll", + "ref/netstandard1.3/System.Xml.XPath.XDocument.dll", + "ref/netstandard1.3/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XPath.XDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xpath.xdocument.4.0.1.nupkg.sha512", + "system.xml.xpath.xdocument.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v3.1": [ + "Microsoft.DotNet.CoreCLR.TestDependencies >= 1.0.0-prerelease", + "Microsoft.NETCore.Platforms >= 3.1.0-preview3.19551.4", + "cijobs >= 0.0.1.2", + "jit-analyze >= 0.0.1.1", + "jit-dasm >= 0.0.1.4" + ] + }, + "packageFolders": { + "/home/z/Dev/coreclr-sec/.packages": {} + }, + "project": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/Common/test_runtime/test_runtime.csproj", + "projectName": "test_runtime", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/Common/test_runtime/test_runtime.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/Common/test_runtime/obj-linux-x64", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netcoreapp3.1": { + "dependencies": { + "Microsoft.DotNet.CoreCLR.TestDependencies": { + "target": "Package", + "version": "[1.0.0-prerelease, )" + }, + "Microsoft.NETCore.Platforms": { + "target": "Package", + "version": "[3.1.0-preview3.19551.4, )" + }, + "cijobs": { + "target": "Package", + "version": "[0.0.1.2, )" + }, + "jit-analyze": { + "target": "Package", + "version": "[0.0.1.1, )" + }, + "jit-dasm": { + "target": "Package", + "version": "[0.0.1.4, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x64": { + "#import": [] + } + } + }, + "logs": [ + { + "code": "NU1603", + "level": "Warning", + "warningLevel": 1, + "message": "cijobs 0.0.1.2 depends on Microsoft.DotNet.Cli.Utils (>= 1.0.0-dev-1457) but Microsoft.DotNet.Cli.Utils 1.0.0-dev-1457 was not found. An approximate best match of Microsoft.DotNet.Cli.Utils 1.0.0-preview1-002702 was resolved.", + "libraryId": "Microsoft.DotNet.Cli.Utils", + "targetGraphs": [ + ".NETCoreApp,Version=v3.1", + ".NETCoreApp,Version=v3.1/linux-x64" + ] + } + ] +}
\ No newline at end of file diff --git a/tests/src/Common/test_runtime/obj-linux-x64/test_runtime.csproj.nuget.cache b/tests/src/Common/test_runtime/obj-linux-x64/test_runtime.csproj.nuget.cache new file mode 100644 index 0000000000..1f482b85f0 --- /dev/null +++ b/tests/src/Common/test_runtime/obj-linux-x64/test_runtime.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "ir2kqLnHxohGotXz8Mejl5+HWWDs+rF0cccV4BmMgFgFNx+tRg80slGwwOEm5ocKpzAqgZKvxAgz9b9+hQUqdg==", + "success": true +}
\ No newline at end of file diff --git a/tests/src/Common/test_runtime/obj-linux-x64/test_runtime.csproj.nuget.dgspec.json b/tests/src/Common/test_runtime/obj-linux-x64/test_runtime.csproj.nuget.dgspec.json new file mode 100644 index 0000000000..8a299e5185 --- /dev/null +++ b/tests/src/Common/test_runtime/obj-linux-x64/test_runtime.csproj.nuget.dgspec.json @@ -0,0 +1,73 @@ +{ + "format": 1, + "restore": { + "/home/z/Dev/coreclr-sec/tests/src/Common/test_runtime/test_runtime.csproj": {} + }, + "projects": { + "/home/z/Dev/coreclr-sec/tests/src/Common/test_runtime/test_runtime.csproj": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/Common/test_runtime/test_runtime.csproj", + "projectName": "test_runtime", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/Common/test_runtime/test_runtime.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/Common/test_runtime/obj-linux-x64", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netcoreapp3.1": { + "dependencies": { + "Microsoft.DotNet.CoreCLR.TestDependencies": { + "target": "Package", + "version": "[1.0.0-prerelease, )" + }, + "Microsoft.NETCore.Platforms": { + "target": "Package", + "version": "[3.1.0-preview3.19551.4, )" + }, + "cijobs": { + "target": "Package", + "version": "[0.0.1.2, )" + }, + "jit-analyze": { + "target": "Package", + "version": "[0.0.1.1, )" + }, + "jit-dasm": { + "target": "Package", + "version": "[0.0.1.4, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x64": { + "#import": [] + } + } + } + } +}
\ No newline at end of file diff --git a/tests/src/Common/test_runtime/obj-linux-x64/test_runtime.csproj.nuget.g.props b/tests/src/Common/test_runtime/obj-linux-x64/test_runtime.csproj.nuget.g.props new file mode 100644 index 0000000000..23f648c18f --- /dev/null +++ b/tests/src/Common/test_runtime/obj-linux-x64/test_runtime.csproj.nuget.g.props @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> + <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> + <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> + <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageRoot> + <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageFolders> + <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.4.0</NuGetToolVersion> + </PropertyGroup> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <PkgNewtonsoft_Json Condition=" '$(PkgNewtonsoft_Json)' == '' ">/home/z/Dev/coreclr-sec/.packages/newtonsoft.json/9.0.1</PkgNewtonsoft_Json> + <PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">/home/z/Dev/coreclr-sec/.packages/microsoft.codeanalysis.analyzers/1.1.0</PkgMicrosoft_CodeAnalysis_Analyzers> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/Common/test_runtime/obj-linux-x64/test_runtime.csproj.nuget.g.targets b/tests/src/Common/test_runtime/obj-linux-x64/test_runtime.csproj.nuget.g.targets new file mode 100644 index 0000000000..53cfaa19b1 --- /dev/null +++ b/tests/src/Common/test_runtime/obj-linux-x64/test_runtime.csproj.nuget.g.targets @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/Common/test_runtime/obj-linux-x86/project.assets.json b/tests/src/Common/test_runtime/obj-linux-x86/project.assets.json new file mode 100644 index 0000000000..f1b638a621 --- /dev/null +++ b/tests/src/Common/test_runtime/obj-linux-x86/project.assets.json @@ -0,0 +1,11771 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v3.1": { + "cijobs/0.0.1.2": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.Cli.Utils": "1.0.0-dev-1457", + "Microsoft.NETCore.App": "1.0.0", + "Newtonsoft.Json": "8.0.3", + "System.CommandLine": "0.1.0-e161117-2", + "System.Runtime.Serialization.Primitives": "4.1.1-rc3-24210-10" + }, + "compile": { + "lib/netcoreapp1.0/cijobs.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/cijobs.dll": {} + } + }, + "jit-analyze/0.0.1.1": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.Cli.Utils": "1.0.0-preview2-003121", + "Microsoft.NETCore.App": "1.0.0", + "Newtonsoft.Json": "8.0.3", + "System.CommandLine": "0.1.0-e161108-1", + "System.Runtime.Serialization.Primitives": "4.1.1-rc3-24210-10" + }, + "compile": { + "lib/netcoreapp1.0/jit-analyze.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/jit-analyze.dll": {} + } + }, + "jit-dasm/0.0.1.4": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.Cli.Utils": "1.0.0-preview2-003121", + "Microsoft.NETCore.App": "1.0.0", + "System.CommandLine": "0.1.0-e161108-1" + }, + "compile": { + "lib/netcoreapp1.0/jit-dasm.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/jit-dasm.dll": {} + } + }, + "Libuv/1.9.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1" + }, + "runtimeTargets": { + "runtimes/debian-x64/native/libuv.so": { + "assetType": "native", + "rid": "debian-x64" + }, + "runtimes/fedora-x64/native/libuv.so": { + "assetType": "native", + "rid": "fedora-x64" + }, + "runtimes/opensuse-x64/native/libuv.so": { + "assetType": "native", + "rid": "opensuse-x64" + }, + "runtimes/osx/native/libuv.dylib": { + "assetType": "native", + "rid": "osx" + }, + "runtimes/rhel-x64/native/libuv.so": { + "assetType": "native", + "rid": "rhel-x64" + }, + "runtimes/win7-arm/native/libuv.dll": { + "assetType": "native", + "rid": "win7-arm" + }, + "runtimes/win7-x64/native/libuv.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x86/native/libuv.dll": { + "assetType": "native", + "rid": "win7-x86" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "type": "package" + }, + "Microsoft.CodeAnalysis.Common/1.3.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "1.1.0", + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Collections.Immutable": "1.2.0", + "System.Console": "4.0.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.FileVersionInfo": "4.0.0", + "System.Diagnostics.StackTrace": "4.0.1", + "System.Diagnostics.Tools": "4.0.1", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Metadata": "1.3.0", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.CodePages": "4.0.1", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Parallel": "4.0.1", + "System.Threading.Thread": "4.0.0", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11", + "System.Xml.XPath.XDocument": "4.0.1", + "System.Xml.XmlDocument": "4.0.1" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.3.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.3.0]" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CodeAnalysis.VisualBasic/1.3.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "1.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.dll": {} + } + }, + "Microsoft.CSharp/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.0/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.DotNet.Cli.Utils/1.0.0-preview2-003121": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.ProjectModel": "1.0.0-rc3-003121", + "NuGet.Frameworks": "3.5.0-beta2-1484", + "NuGet.Packaging": "3.5.0-beta2-1484", + "NuGet.ProjectModel": "3.5.0-beta2-1484", + "NuGet.Versioning": "3.5.0-beta2-1484", + "System.Diagnostics.Process": "4.1.0" + }, + "compile": { + "lib/netstandard1.6/Microsoft.DotNet.Cli.Utils.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Microsoft.DotNet.Cli.Utils.dll": {} + } + }, + "Microsoft.DotNet.CoreCLR.TestDependencies/1.0.0-prerelease": { + "type": "package", + "compile": { + "lib/aspnetcore50/API-MS-Win-Base-Util-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-PrivateProfile-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-String-L2-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-StringAnsi-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-EventLog-Legacy-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Consumer-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Controller-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Legacy-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Provider-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Security-LsaPolicy-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-devices-config-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-devices-config-L1-1-1.dll": {}, + "lib/aspnetcore50/System.Core.dll": {}, + "lib/aspnetcore50/System.Xml.Linq.dll": {}, + "lib/aspnetcore50/System.Xml.dll": {}, + "lib/aspnetcore50/System.dll": {}, + "lib/aspnetcore50/api-ms-win-core-com-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-com-private-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-comm-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-console-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-console-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-datetime-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-datetime-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-debug-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-debug-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-delayload-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-errorhandling-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-errorhandling-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-fibers-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-fibers-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l1-2-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l2-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-handle-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-heap-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-heap-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-interlocked-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-io-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-io-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-libraryloader-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-libraryloader-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-l1-2-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-obsolete-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-3.dll": {}, + "lib/aspnetcore50/api-ms-win-core-namedpipe-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-normalization-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-privateprofile-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processenvironment-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processenvironment-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processsecurity-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-profile-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-psapi-ansi-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-psapi-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-psapi-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-realtime-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-registry-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-registry-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-rtlsupport-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shlwapi-legacy-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shutdown-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shutdown-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-string-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-string-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-string-obsolete-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-stringloader-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-stringloader-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-synch-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-synch-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-threadpool-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-threadpool-legacy-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-threadpool-private-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-timezone-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-url-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-util-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-version-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-error-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-error-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-registration-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-robuffer-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-string-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-wow64-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-xstate-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-xstate-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-ro-typeresolution-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-base-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-cryptoapi-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-lsalookup-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-lsalookup-l2-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-security-provider-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-sddl-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-core-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-core-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-service-management-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-management-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-private-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-private-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-service-winsvc-l1-1-0.dll": {} + }, + "runtime": { + "lib/aspnetcore50/API-MS-Win-Base-Util-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-PrivateProfile-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-String-L2-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-StringAnsi-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-EventLog-Legacy-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Consumer-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Controller-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Legacy-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Provider-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Security-LsaPolicy-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-devices-config-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-devices-config-L1-1-1.dll": {}, + "lib/aspnetcore50/System.Core.dll": {}, + "lib/aspnetcore50/System.Xml.Linq.dll": {}, + "lib/aspnetcore50/System.Xml.dll": {}, + "lib/aspnetcore50/System.dll": {}, + "lib/aspnetcore50/api-ms-win-core-com-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-com-private-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-comm-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-console-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-console-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-datetime-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-datetime-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-debug-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-debug-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-delayload-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-errorhandling-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-errorhandling-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-fibers-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-fibers-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l1-2-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l2-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-handle-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-heap-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-heap-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-interlocked-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-io-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-io-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-libraryloader-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-libraryloader-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-l1-2-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-obsolete-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-3.dll": {}, + "lib/aspnetcore50/api-ms-win-core-namedpipe-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-normalization-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-privateprofile-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processenvironment-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processenvironment-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processsecurity-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-profile-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-psapi-ansi-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-psapi-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-psapi-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-realtime-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-registry-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-registry-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-rtlsupport-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shlwapi-legacy-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shutdown-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shutdown-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-string-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-string-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-string-obsolete-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-stringloader-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-stringloader-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-synch-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-synch-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-threadpool-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-threadpool-legacy-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-threadpool-private-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-timezone-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-url-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-util-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-version-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-error-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-error-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-registration-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-robuffer-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-string-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-wow64-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-xstate-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-xstate-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-ro-typeresolution-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-base-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-cryptoapi-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-lsalookup-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-lsalookup-l2-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-security-provider-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-sddl-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-core-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-core-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-service-management-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-management-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-private-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-private-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-service-winsvc-l1-1-0.dll": {} + } + }, + "Microsoft.DotNet.InternalAbstractions/1.0.0": { + "type": "package", + "dependencies": { + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0" + }, + "compile": { + "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {} + } + }, + "Microsoft.DotNet.ProjectModel/1.0.0-rc3-003121": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1", + "Microsoft.Extensions.DependencyModel": "1.0.0", + "Newtonsoft.Json": "9.0.1", + "NuGet.Packaging": "3.5.0-beta2-1484", + "NuGet.RuntimeModel": "3.5.0-beta2-1484", + "System.Dynamic.Runtime": "4.0.11", + "System.Reflection.Metadata": "1.3.0", + "System.Runtime.Loader": "4.0.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Threading.Thread": "4.0.0", + "System.Xml.XDocument": "4.0.11" + }, + "compile": { + "lib/netstandard1.6/Microsoft.DotNet.ProjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Microsoft.DotNet.ProjectModel.dll": {} + } + }, + "Microsoft.Extensions.DependencyModel/1.0.0": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.InternalAbstractions": "1.0.0", + "Newtonsoft.Json": "9.0.1", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Linq": "4.1.0" + }, + "compile": { + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "Microsoft.NETCore.App/1.0.0": { + "type": "package", + "dependencies": { + "Libuv": "1.9.0", + "Microsoft.CSharp": "4.0.1", + "Microsoft.CodeAnalysis.CSharp": "1.3.0", + "Microsoft.CodeAnalysis.VisualBasic": "1.3.0", + "Microsoft.NETCore.DotNetHostPolicy": "1.0.1", + "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2", + "Microsoft.VisualBasic": "10.0.1", + "NETStandard.Library": "1.6.0", + "System.Buffers": "4.0.0", + "System.Collections.Immutable": "1.2.0", + "System.ComponentModel": "4.0.1", + "System.ComponentModel.Annotations": "4.1.0", + "System.Diagnostics.DiagnosticSource": "4.0.0", + "System.Diagnostics.Process": "4.1.0", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.IO.FileSystem.Watcher": "4.0.0", + "System.IO.MemoryMappedFiles": "4.0.0", + "System.IO.UnmanagedMemoryStream": "4.0.1", + "System.Linq.Expressions": "4.1.0", + "System.Linq.Parallel": "4.0.1", + "System.Linq.Queryable": "4.0.1", + "System.Net.NameResolution": "4.0.0", + "System.Net.Requests": "4.0.11", + "System.Net.Security": "4.0.0", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Numerics.Vectors": "4.1.1", + "System.Reflection.DispatchProxy": "4.0.1", + "System.Reflection.Metadata": "1.3.0", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.Reader": "4.0.0", + "System.Runtime.Loader": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Threading.Tasks.Dataflow": "4.6.0", + "System.Threading.Tasks.Extensions": "4.0.0", + "System.Threading.Tasks.Parallel": "4.0.1", + "System.Threading.Thread": "4.0.0", + "System.Threading.ThreadPool": "4.0.10" + }, + "compile": { + "lib/netcoreapp1.0/_._": {} + }, + "runtime": { + "lib/netcoreapp1.0/_._": {} + } + }, + "Microsoft.NETCore.DotNetHost/1.0.1": { + "type": "package" + }, + "Microsoft.NETCore.DotNetHostPolicy/1.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.DotNetHostResolver": "1.0.1" + } + }, + "Microsoft.NETCore.DotNetHostResolver/1.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.DotNetHost": "1.0.1" + } + }, + "Microsoft.NETCore.Jit/1.0.2": { + "type": "package" + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Jit": "1.0.2", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1" + } + }, + "Microsoft.NETCore.Targets/1.0.1": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "type": "package" + }, + "Microsoft.VisualBasic/10.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.1/Microsoft.VisualBasic.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.VisualBasic.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "NETStandard.Library/1.6.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Console": "4.0.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.IO.Compression.ZipFile": "4.0.1", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Net.Http": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.Sockets": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Timer": "4.0.1", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11" + } + }, + "Newtonsoft.Json/9.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11" + }, + "compile": { + "lib/netstandard1.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard1.0/Newtonsoft.Json.dll": {} + } + }, + "NuGet.Common/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "System.Diagnostics.Process": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Threading.Thread": "4.0.0" + }, + "compile": { + "lib/netstandard1.3/NuGet.Common.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Common.dll": {} + } + }, + "NuGet.Configuration/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Common": "3.5.0-beta2-1484", + "System.Xml.XDocument": "4.0.11" + }, + "compile": { + "lib/netstandard1.3/NuGet.Configuration.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Configuration.dll": {} + } + }, + "NuGet.DependencyResolver.Core/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Frameworks": "3.5.0-beta2-1484", + "NuGet.LibraryModel": "3.5.0-beta2-1484", + "NuGet.Protocol.Core.v3": "3.5.0-beta2-1484", + "NuGet.Repositories": "3.5.0-beta2-1484", + "NuGet.RuntimeModel": "3.5.0-beta2-1484" + }, + "compile": { + "lib/netstandard1.3/NuGet.DependencyResolver.Core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.DependencyResolver.Core.dll": {} + } + }, + "NuGet.Frameworks/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.3/NuGet.Frameworks.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Frameworks.dll": {} + } + }, + "NuGet.LibraryModel/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Frameworks": "3.5.0-beta2-1484", + "NuGet.Versioning": "3.5.0-beta2-1484" + }, + "compile": { + "lib/netstandard1.3/NuGet.LibraryModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.LibraryModel.dll": {} + } + }, + "NuGet.Packaging/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Common": "3.5.0-beta2-1484", + "NuGet.Packaging.Core": "3.5.0-beta2-1484", + "System.IO.Compression": "4.1.0" + }, + "compile": { + "lib/netstandard1.3/NuGet.Packaging.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Packaging.dll": {} + } + }, + "NuGet.Packaging.Core/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Common": "3.5.0-beta2-1484", + "NuGet.Packaging.Core.Types": "3.5.0-beta2-1484", + "System.Xml.XDocument": "4.0.11" + }, + "compile": { + "lib/netstandard1.3/NuGet.Packaging.Core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Packaging.Core.dll": {} + } + }, + "NuGet.Packaging.Core.Types/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Frameworks": "3.5.0-beta2-1484", + "NuGet.Versioning": "3.5.0-beta2-1484" + }, + "compile": { + "lib/netstandard1.3/NuGet.Packaging.Core.Types.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Packaging.Core.Types.dll": {} + } + }, + "NuGet.ProjectModel/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "Newtonsoft.Json": "6.0.4", + "NuGet.DependencyResolver.Core": "3.5.0-beta2-1484", + "System.Dynamic.Runtime": "4.0.11", + "System.Threading.Thread": "4.0.0" + }, + "compile": { + "lib/netstandard1.3/NuGet.ProjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.ProjectModel.dll": {} + } + }, + "NuGet.Protocol.Core.Types/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Common": "3.5.0-beta2-1484", + "NuGet.Configuration": "3.5.0-beta2-1484", + "NuGet.Packaging": "3.5.0-beta2-1484", + "System.Net.Http": "4.1.0" + }, + "compile": { + "lib/netstandard1.3/NuGet.Protocol.Core.Types.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Protocol.Core.Types.dll": {} + } + }, + "NuGet.Protocol.Core.v3/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "Newtonsoft.Json": "6.0.4", + "NuGet.Common": "3.5.0-beta2-1484", + "NuGet.Packaging": "3.5.0-beta2-1484", + "NuGet.Protocol.Core.Types": "3.5.0-beta2-1484", + "System.Dynamic.Runtime": "4.0.11" + }, + "compile": { + "lib/netstandard1.3/NuGet.Protocol.Core.v3.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Protocol.Core.v3.dll": {} + } + }, + "NuGet.Repositories/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Packaging": "3.5.0-beta2-1484" + }, + "compile": { + "lib/netstandard1.3/NuGet.Repositories.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Repositories.dll": {} + } + }, + "NuGet.RuntimeModel/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "Newtonsoft.Json": "6.0.4", + "NuGet.Frameworks": "3.5.0-beta2-1484", + "NuGet.Versioning": "3.5.0-beta2-1484", + "System.Dynamic.Runtime": "4.0.11", + "System.ObjectModel": "4.0.12" + }, + "compile": { + "lib/netstandard1.3/NuGet.RuntimeModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.RuntimeModel.dll": {} + } + }, + "NuGet.Versioning/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.0/NuGet.Versioning.dll": {} + }, + "runtime": { + "lib/netstandard1.0/NuGet.Versioning.dll": {} + } + }, + "runtime.native.System/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Security/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "System.AppContext/4.1.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "lib/netstandard1.1/System.Buffers.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Collections.Concurrent/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.2.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "lib/netstandard1.0/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Collections.Immutable.dll": {} + } + }, + "System.CommandLine/0.1.0-e161117-2": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "lib/netstandard1.5/System.CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.CommandLine.dll": {} + } + }, + "System.ComponentModel/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.ComponentModel": "4.0.1", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/netstandard1.4/System.ComponentModel.Annotations.dll": {} + } + }, + "System.Console/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.FileVersionInfo/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Reflection.Metadata": "1.3.0", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Process/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "Microsoft.Win32.Registry": "4.0.0", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Thread": "4.0.0", + "System.Threading.ThreadPool": "4.0.10", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.4/System.Diagnostics.Process.dll": {} + }, + "runtimeTargets": { + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.StackTrace/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections.Immutable": "1.2.0", + "System.IO.FileSystem": "4.0.1", + "System.Reflection": "4.1.0", + "System.Reflection.Metadata": "1.3.0", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.Tracing/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Dynamic.Runtime/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Globalization.Calendars/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Extensions.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.IO.Compression/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0", + "runtime.native.System.IO.Compression": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.0.1": { + "type": "package", + "dependencies": { + "System.Buffers": "4.0.0", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Overlapped": "4.0.1", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Thread": "4.0.0", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Watcher.dll": {} + }, + "runtimeTargets": { + "runtimes/linux/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.MemoryMappedFiles/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.IO.UnmanagedMemoryStream": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.MemoryMappedFiles.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.UnmanagedMemoryStream/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} + } + }, + "System.Linq/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Emit.Lightweight": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Parallel/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.1/System.Linq.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Linq.Parallel.dll": {} + } + }, + "System.Linq.Queryable/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.DiagnosticSource": "4.0.0", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.OpenSsl": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0", + "runtime.native.System.Net.Http": "4.0.1", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.NameResolution/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Principal.Windows": "4.0.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Requests/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Net.Http": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.Requests.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Security/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Claims": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.OpenSsl": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.ThreadPool": "4.0.10", + "runtime.native.System": "4.0.0", + "runtime.native.System.Net.Security": "4.0.1", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Security.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Sockets/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebHeaderCollection/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + } + }, + "System.Numerics.Vectors/4.1.1": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Numerics.Vectors.dll": {} + } + }, + "System.ObjectModel/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.DispatchProxy/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {} + } + }, + "System.Reflection.Emit/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Metadata/1.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.Immutable": "1.2.0", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "lib/netstandard1.1/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.1.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.Reader/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "lib/netstandard1.0/System.Resources.Reader.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Resources.Reader.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp80+wpa81/_._": {} + } + }, + "System.Runtime.Extensions/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime.Handles/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Loader/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.0.1": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.Claims/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Security.Principal": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Cng": "4.2.0", + "System.Security.Cryptography.Csp": "4.0.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.OpenSsl": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "runtime.native.System": "4.0.0", + "runtime.native.System.Net.Http": "4.0.1", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Principal/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Claims": "4.0.1", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.Encoding.CodePages/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding.Extensions/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.RegularExpressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.6/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Threading.Tasks/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading.Tasks.Dataflow/4.6.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Dynamic.Runtime": "4.0.11", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Thread/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Extensions": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XPath/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.dll": {} + } + }, + "System.Xml.XPath.XDocument/4.0.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11", + "System.Xml.XPath": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.XDocument.dll": {} + } + } + }, + ".NETCoreApp,Version=v3.1/linux-x86": { + "cijobs/0.0.1.2": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.Cli.Utils": "1.0.0-dev-1457", + "Microsoft.NETCore.App": "1.0.0", + "Newtonsoft.Json": "8.0.3", + "System.CommandLine": "0.1.0-e161117-2", + "System.Runtime.Serialization.Primitives": "4.1.1-rc3-24210-10" + }, + "compile": { + "lib/netcoreapp1.0/cijobs.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/cijobs.dll": {} + } + }, + "jit-analyze/0.0.1.1": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.Cli.Utils": "1.0.0-preview2-003121", + "Microsoft.NETCore.App": "1.0.0", + "Newtonsoft.Json": "8.0.3", + "System.CommandLine": "0.1.0-e161108-1", + "System.Runtime.Serialization.Primitives": "4.1.1-rc3-24210-10" + }, + "compile": { + "lib/netcoreapp1.0/jit-analyze.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/jit-analyze.dll": {} + } + }, + "jit-dasm/0.0.1.4": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.Cli.Utils": "1.0.0-preview2-003121", + "Microsoft.NETCore.App": "1.0.0", + "System.CommandLine": "0.1.0-e161108-1" + }, + "compile": { + "lib/netcoreapp1.0/jit-dasm.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/jit-dasm.dll": {} + } + }, + "Libuv/1.9.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1" + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "type": "package" + }, + "Microsoft.CodeAnalysis.Common/1.3.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "1.1.0", + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Collections.Immutable": "1.2.0", + "System.Console": "4.0.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.FileVersionInfo": "4.0.0", + "System.Diagnostics.StackTrace": "4.0.1", + "System.Diagnostics.Tools": "4.0.1", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Metadata": "1.3.0", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.CodePages": "4.0.1", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Parallel": "4.0.1", + "System.Threading.Thread": "4.0.0", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11", + "System.Xml.XPath.XDocument": "4.0.1", + "System.Xml.XmlDocument": "4.0.1" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.3.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.3.0]" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CodeAnalysis.VisualBasic/1.3.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "1.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.dll": {} + } + }, + "Microsoft.CSharp/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.0/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.DotNet.Cli.Utils/1.0.0-preview2-003121": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.ProjectModel": "1.0.0-rc3-003121", + "NuGet.Frameworks": "3.5.0-beta2-1484", + "NuGet.Packaging": "3.5.0-beta2-1484", + "NuGet.ProjectModel": "3.5.0-beta2-1484", + "NuGet.Versioning": "3.5.0-beta2-1484", + "System.Diagnostics.Process": "4.1.0" + }, + "compile": { + "lib/netstandard1.6/Microsoft.DotNet.Cli.Utils.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Microsoft.DotNet.Cli.Utils.dll": {} + } + }, + "Microsoft.DotNet.CoreCLR.TestDependencies/1.0.0-prerelease": { + "type": "package", + "compile": { + "lib/aspnetcore50/API-MS-Win-Base-Util-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-PrivateProfile-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-String-L2-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-StringAnsi-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-EventLog-Legacy-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Consumer-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Controller-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Legacy-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Provider-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Security-LsaPolicy-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-devices-config-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-devices-config-L1-1-1.dll": {}, + "lib/aspnetcore50/System.Core.dll": {}, + "lib/aspnetcore50/System.Xml.Linq.dll": {}, + "lib/aspnetcore50/System.Xml.dll": {}, + "lib/aspnetcore50/System.dll": {}, + "lib/aspnetcore50/api-ms-win-core-com-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-com-private-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-comm-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-console-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-console-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-datetime-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-datetime-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-debug-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-debug-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-delayload-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-errorhandling-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-errorhandling-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-fibers-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-fibers-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l1-2-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l2-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-handle-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-heap-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-heap-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-interlocked-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-io-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-io-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-libraryloader-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-libraryloader-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-l1-2-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-obsolete-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-3.dll": {}, + "lib/aspnetcore50/api-ms-win-core-namedpipe-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-normalization-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-privateprofile-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processenvironment-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processenvironment-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processsecurity-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-profile-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-psapi-ansi-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-psapi-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-psapi-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-realtime-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-registry-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-registry-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-rtlsupport-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shlwapi-legacy-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shutdown-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shutdown-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-string-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-string-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-string-obsolete-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-stringloader-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-stringloader-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-synch-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-synch-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-threadpool-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-threadpool-legacy-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-threadpool-private-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-timezone-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-url-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-util-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-version-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-error-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-error-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-registration-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-robuffer-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-string-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-wow64-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-xstate-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-xstate-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-ro-typeresolution-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-base-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-cryptoapi-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-lsalookup-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-lsalookup-l2-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-security-provider-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-sddl-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-core-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-core-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-service-management-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-management-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-private-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-private-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-service-winsvc-l1-1-0.dll": {} + }, + "runtime": { + "lib/aspnetcore50/API-MS-Win-Base-Util-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-PrivateProfile-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-String-L2-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Core-StringAnsi-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-EventLog-Legacy-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Consumer-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Controller-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Legacy-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Eventing-Provider-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-Security-LsaPolicy-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-devices-config-L1-1-0.dll": {}, + "lib/aspnetcore50/API-MS-Win-devices-config-L1-1-1.dll": {}, + "lib/aspnetcore50/System.Core.dll": {}, + "lib/aspnetcore50/System.Xml.Linq.dll": {}, + "lib/aspnetcore50/System.Xml.dll": {}, + "lib/aspnetcore50/System.dll": {}, + "lib/aspnetcore50/api-ms-win-core-com-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-com-private-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-comm-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-console-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-console-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-datetime-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-datetime-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-debug-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-debug-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-delayload-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-errorhandling-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-errorhandling-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-fibers-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-fibers-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l1-2-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-file-l2-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-handle-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-heap-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-heap-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-interlocked-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-io-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-io-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-libraryloader-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-libraryloader-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-l1-2-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-localization-obsolete-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-3.dll": {}, + "lib/aspnetcore50/api-ms-win-core-namedpipe-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-normalization-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-privateprofile-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processenvironment-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processenvironment-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processsecurity-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-profile-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-psapi-ansi-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-psapi-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-psapi-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-realtime-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-registry-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-registry-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-rtlsupport-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shlwapi-legacy-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shutdown-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-shutdown-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-string-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-string-obsolete-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-string-obsolete-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-stringloader-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-stringloader-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-synch-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-synch-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-2.dll": {}, + "lib/aspnetcore50/api-ms-win-core-threadpool-l1-2-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-threadpool-legacy-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-threadpool-private-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-timezone-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-url-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-util-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-version-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-error-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-error-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-registration-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-robuffer-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-winrt-string-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-wow64-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-xstate-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-core-xstate-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-ro-typeresolution-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-base-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-cryptoapi-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-lsalookup-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-lsalookup-l2-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-security-provider-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-security-sddl-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-core-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-core-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-service-management-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-management-l2-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-private-l1-1-0.dll": {}, + "lib/aspnetcore50/api-ms-win-service-private-l1-1-1.dll": {}, + "lib/aspnetcore50/api-ms-win-service-winsvc-l1-1-0.dll": {} + } + }, + "Microsoft.DotNet.InternalAbstractions/1.0.0": { + "type": "package", + "dependencies": { + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0" + }, + "compile": { + "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {} + } + }, + "Microsoft.DotNet.ProjectModel/1.0.0-rc3-003121": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1", + "Microsoft.Extensions.DependencyModel": "1.0.0", + "Newtonsoft.Json": "9.0.1", + "NuGet.Packaging": "3.5.0-beta2-1484", + "NuGet.RuntimeModel": "3.5.0-beta2-1484", + "System.Dynamic.Runtime": "4.0.11", + "System.Reflection.Metadata": "1.3.0", + "System.Runtime.Loader": "4.0.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Threading.Thread": "4.0.0", + "System.Xml.XDocument": "4.0.11" + }, + "compile": { + "lib/netstandard1.6/Microsoft.DotNet.ProjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Microsoft.DotNet.ProjectModel.dll": {} + } + }, + "Microsoft.Extensions.DependencyModel/1.0.0": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.InternalAbstractions": "1.0.0", + "Newtonsoft.Json": "9.0.1", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Linq": "4.1.0" + }, + "compile": { + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "Microsoft.NETCore.App/1.0.0": { + "type": "package", + "dependencies": { + "Libuv": "1.9.0", + "Microsoft.CSharp": "4.0.1", + "Microsoft.CodeAnalysis.CSharp": "1.3.0", + "Microsoft.CodeAnalysis.VisualBasic": "1.3.0", + "Microsoft.NETCore.DotNetHostPolicy": "1.0.1", + "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2", + "Microsoft.VisualBasic": "10.0.1", + "NETStandard.Library": "1.6.0", + "System.Buffers": "4.0.0", + "System.Collections.Immutable": "1.2.0", + "System.ComponentModel": "4.0.1", + "System.ComponentModel.Annotations": "4.1.0", + "System.Diagnostics.DiagnosticSource": "4.0.0", + "System.Diagnostics.Process": "4.1.0", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.IO.FileSystem.Watcher": "4.0.0", + "System.IO.MemoryMappedFiles": "4.0.0", + "System.IO.UnmanagedMemoryStream": "4.0.1", + "System.Linq.Expressions": "4.1.0", + "System.Linq.Parallel": "4.0.1", + "System.Linq.Queryable": "4.0.1", + "System.Net.NameResolution": "4.0.0", + "System.Net.Requests": "4.0.11", + "System.Net.Security": "4.0.0", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Numerics.Vectors": "4.1.1", + "System.Reflection.DispatchProxy": "4.0.1", + "System.Reflection.Metadata": "1.3.0", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.Reader": "4.0.0", + "System.Runtime.Loader": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Threading.Tasks.Dataflow": "4.6.0", + "System.Threading.Tasks.Extensions": "4.0.0", + "System.Threading.Tasks.Parallel": "4.0.1", + "System.Threading.Thread": "4.0.0", + "System.Threading.ThreadPool": "4.0.10" + }, + "compile": { + "lib/netcoreapp1.0/_._": {} + }, + "runtime": { + "lib/netcoreapp1.0/_._": {} + } + }, + "Microsoft.NETCore.DotNetHost/1.0.1": { + "type": "package" + }, + "Microsoft.NETCore.DotNetHostPolicy/1.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.DotNetHostResolver": "1.0.1" + } + }, + "Microsoft.NETCore.DotNetHostResolver/1.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.DotNetHost": "1.0.1" + } + }, + "Microsoft.NETCore.Jit/1.0.2": { + "type": "package" + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Jit": "1.0.2", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1" + } + }, + "Microsoft.NETCore.Targets/1.0.1": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "type": "package" + }, + "Microsoft.VisualBasic/10.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.1/Microsoft.VisualBasic.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.VisualBasic.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.unix.Microsoft.Win32.Primitives": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll": {} + } + }, + "NETStandard.Library/1.6.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Console": "4.0.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.IO.Compression.ZipFile": "4.0.1", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Net.Http": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.Sockets": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Timer": "4.0.1", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11" + } + }, + "Newtonsoft.Json/9.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11" + }, + "compile": { + "lib/netstandard1.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard1.0/Newtonsoft.Json.dll": {} + } + }, + "NuGet.Common/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "System.Diagnostics.Process": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Threading.Thread": "4.0.0" + }, + "compile": { + "lib/netstandard1.3/NuGet.Common.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Common.dll": {} + } + }, + "NuGet.Configuration/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Common": "3.5.0-beta2-1484", + "System.Xml.XDocument": "4.0.11" + }, + "compile": { + "lib/netstandard1.3/NuGet.Configuration.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Configuration.dll": {} + } + }, + "NuGet.DependencyResolver.Core/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Frameworks": "3.5.0-beta2-1484", + "NuGet.LibraryModel": "3.5.0-beta2-1484", + "NuGet.Protocol.Core.v3": "3.5.0-beta2-1484", + "NuGet.Repositories": "3.5.0-beta2-1484", + "NuGet.RuntimeModel": "3.5.0-beta2-1484" + }, + "compile": { + "lib/netstandard1.3/NuGet.DependencyResolver.Core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.DependencyResolver.Core.dll": {} + } + }, + "NuGet.Frameworks/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.3/NuGet.Frameworks.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Frameworks.dll": {} + } + }, + "NuGet.LibraryModel/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Frameworks": "3.5.0-beta2-1484", + "NuGet.Versioning": "3.5.0-beta2-1484" + }, + "compile": { + "lib/netstandard1.3/NuGet.LibraryModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.LibraryModel.dll": {} + } + }, + "NuGet.Packaging/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Common": "3.5.0-beta2-1484", + "NuGet.Packaging.Core": "3.5.0-beta2-1484", + "System.IO.Compression": "4.1.0" + }, + "compile": { + "lib/netstandard1.3/NuGet.Packaging.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Packaging.dll": {} + } + }, + "NuGet.Packaging.Core/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Common": "3.5.0-beta2-1484", + "NuGet.Packaging.Core.Types": "3.5.0-beta2-1484", + "System.Xml.XDocument": "4.0.11" + }, + "compile": { + "lib/netstandard1.3/NuGet.Packaging.Core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Packaging.Core.dll": {} + } + }, + "NuGet.Packaging.Core.Types/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Frameworks": "3.5.0-beta2-1484", + "NuGet.Versioning": "3.5.0-beta2-1484" + }, + "compile": { + "lib/netstandard1.3/NuGet.Packaging.Core.Types.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Packaging.Core.Types.dll": {} + } + }, + "NuGet.ProjectModel/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "Newtonsoft.Json": "6.0.4", + "NuGet.DependencyResolver.Core": "3.5.0-beta2-1484", + "System.Dynamic.Runtime": "4.0.11", + "System.Threading.Thread": "4.0.0" + }, + "compile": { + "lib/netstandard1.3/NuGet.ProjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.ProjectModel.dll": {} + } + }, + "NuGet.Protocol.Core.Types/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Common": "3.5.0-beta2-1484", + "NuGet.Configuration": "3.5.0-beta2-1484", + "NuGet.Packaging": "3.5.0-beta2-1484", + "System.Net.Http": "4.1.0" + }, + "compile": { + "lib/netstandard1.3/NuGet.Protocol.Core.Types.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Protocol.Core.Types.dll": {} + } + }, + "NuGet.Protocol.Core.v3/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "Newtonsoft.Json": "6.0.4", + "NuGet.Common": "3.5.0-beta2-1484", + "NuGet.Packaging": "3.5.0-beta2-1484", + "NuGet.Protocol.Core.Types": "3.5.0-beta2-1484", + "System.Dynamic.Runtime": "4.0.11" + }, + "compile": { + "lib/netstandard1.3/NuGet.Protocol.Core.v3.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Protocol.Core.v3.dll": {} + } + }, + "NuGet.Repositories/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "NuGet.Packaging": "3.5.0-beta2-1484" + }, + "compile": { + "lib/netstandard1.3/NuGet.Repositories.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.Repositories.dll": {} + } + }, + "NuGet.RuntimeModel/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "Newtonsoft.Json": "6.0.4", + "NuGet.Frameworks": "3.5.0-beta2-1484", + "NuGet.Versioning": "3.5.0-beta2-1484", + "System.Dynamic.Runtime": "4.0.11", + "System.ObjectModel": "4.0.12" + }, + "compile": { + "lib/netstandard1.3/NuGet.RuntimeModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/NuGet.RuntimeModel.dll": {} + } + }, + "NuGet.Versioning/3.5.0-beta2-1484": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.0/NuGet.Versioning.dll": {} + }, + "runtime": { + "lib/netstandard1.0/NuGet.Versioning.dll": {} + } + }, + "runtime.any.System.Collections/4.0.11": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tools/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.Tools.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tracing/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "runtime.any.System.Globalization/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.dll": {} + } + }, + "runtime.any.System.Globalization.Calendars/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "runtime.any.System.IO/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.IO.dll": {} + } + }, + "runtime.any.System.Reflection/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.dll": {} + } + }, + "runtime.any.System.Reflection.Extensions/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Extensions.dll": {} + } + }, + "runtime.any.System.Reflection.Primitives/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Primitives.dll": {} + } + }, + "runtime.any.System.Resources.ResourceManager/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Resources.ResourceManager.dll": {} + } + }, + "runtime.any.System.Runtime/4.1.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.dll": {} + } + }, + "runtime.any.System.Runtime.Handles/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "runtime.any.System.Runtime.InteropServices/4.1.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.InteropServices.dll": {} + } + }, + "runtime.any.System.Text.Encoding/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "runtime.any.System.Text.Encoding.Extensions/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "runtime.any.System.Threading.Tasks/4.0.11": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "runtime.any.System.Threading.Timer/4.0.1": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Timer.dll": {} + } + }, + "runtime.native.System/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Security/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.unix.Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.unix.System.Console/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Console.dll": {} + } + }, + "runtime.unix.System.Diagnostics.Debug/4.0.11": { + "type": "package", + "dependencies": { + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.unix.System.IO.FileSystem/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "runtime.unix.System.Net.Primitives/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "runtime.unix.System.Net.Sockets/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Net.NameResolution": "4.0.0", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.ThreadPool": "4.0.10", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "runtime.unix.System.Private.Uri/4.0.1": { + "type": "package", + "dependencies": { + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.0/System.Private.Uri.dll": {} + } + }, + "runtime.unix.System.Runtime.Extensions/4.1.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1", + "runtime.native.System": "4.0.0", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.AppContext/4.1.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "lib/netstandard1.1/System.Buffers.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Collections": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Collections.Concurrent/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.2.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "lib/netstandard1.0/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Collections.Immutable.dll": {} + } + }, + "System.CommandLine/0.1.0-e161117-2": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "lib/netstandard1.5/System.CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.CommandLine.dll": {} + } + }, + "System.ComponentModel/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.ComponentModel": "4.0.1", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.4/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/netstandard1.4/System.ComponentModel.Annotations.dll": {} + } + }, + "System.Console/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "runtime.unix.System.Console": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.unix.System.Diagnostics.Debug": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.FileVersionInfo/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Reflection.Metadata": "1.3.0", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {} + } + }, + "System.Diagnostics.Process/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "Microsoft.Win32.Registry": "4.0.0", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Thread": "4.0.0", + "System.Threading.ThreadPool": "4.0.10", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.4/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.StackTrace/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections.Immutable": "1.2.0", + "System.IO.FileSystem": "4.0.1", + "System.Reflection": "4.1.0", + "System.Reflection.Metadata": "1.3.0", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Diagnostics.Tools": "4.0.1" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.Tracing/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Diagnostics.Tracing": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Dynamic.Runtime/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Globalization": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Globalization.Calendars/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Runtime": "4.1.0", + "runtime.any.System.Globalization.Calendars": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.any.System.IO": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.IO.Compression/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0", + "runtime.native.System.IO.Compression": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {} + } + }, + "System.IO.Compression.ZipFile/4.0.1": { + "type": "package", + "dependencies": { + "System.Buffers": "4.0.0", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.unix.System.IO.FileSystem": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Overlapped": "4.0.1", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Thread": "4.0.0", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "runtimes/linux/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.IO.MemoryMappedFiles/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.IO.UnmanagedMemoryStream": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.MemoryMappedFiles.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll": {} + } + }, + "System.IO.UnmanagedMemoryStream/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} + } + }, + "System.Linq/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Emit.Lightweight": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Parallel/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.1/System.Linq.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Linq.Parallel.dll": {} + } + }, + "System.Linq.Queryable/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.DiagnosticSource": "4.0.0", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.OpenSsl": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0", + "runtime.native.System.Net.Http": "4.0.1", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {} + } + }, + "System.Net.NameResolution/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Principal.Windows": "4.0.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {} + } + }, + "System.Net.Primitives/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "runtime.unix.System.Net.Primitives": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Requests/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Net.Http": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.WebHeaderCollection": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Net.Requests.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll": {} + } + }, + "System.Net.Security/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Claims": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.OpenSsl": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.ThreadPool": "4.0.10", + "runtime.native.System": "4.0.0", + "runtime.native.System.Net.Security": "4.0.1", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Security.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {} + } + }, + "System.Net.Sockets/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11", + "runtime.unix.System.Net.Sockets": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebHeaderCollection/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} + } + }, + "System.Numerics.Vectors/4.1.1": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Numerics.Vectors.dll": {} + } + }, + "System.ObjectModel/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Private.Uri/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "runtime.unix.System.Private.Uri": "4.0.1" + }, + "compile": { + "ref/netstandard/_._": {} + } + }, + "System.Reflection/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Reflection": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.DispatchProxy/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {} + } + }, + "System.Reflection.Emit/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "runtime.any.System.Reflection.Extensions": "4.0.1" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Metadata/1.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.Immutable": "1.2.0", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "lib/netstandard1.1/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Reflection.Primitives": "4.0.1" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.1.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.Reader/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "lib/netstandard1.0/System.Resources.Reader.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Resources.Reader.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0", + "runtime.any.System.Resources.ResourceManager": "4.0.1" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "runtime.any.System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp80+wpa81/_._": {} + } + }, + "System.Runtime.Extensions/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.unix.System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime.Handles/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "runtime.any.System.Runtime.InteropServices": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "System.Runtime.Loader/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.0.1": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.Claims/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Security.Principal": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Cryptography.Csp/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.OpenSsl/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Cng": "4.2.0", + "System.Security.Cryptography.Csp": "4.0.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.OpenSsl": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "runtime.native.System": "4.0.0", + "runtime.native.System.Net.Http": "4.0.1", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Claims": "4.0.1", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll": {} + } + }, + "System.Text.Encoding/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.Encoding.CodePages/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "runtime.any.System.Text.Encoding.Extensions": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.RegularExpressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.6/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading.Tasks.Dataflow/4.6.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Dynamic.Runtime": "4.0.11", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.0.12", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tracing": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Thread/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "runtime.any.System.Threading.Timer": "4.0.1" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Extensions": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XPath/4.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.dll": {} + } + }, + "System.Xml.XPath.XDocument/4.0.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11", + "System.Xml.XPath": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.XDocument.dll": {} + } + } + } + }, + "libraries": { + "cijobs/0.0.1.2": { + "sha512": "iNbDeDZi+B5sWNQKR+OW4PpEj/GR6Q/wPSIX3nEarSWCI3TFuyr6v+TRjen6+8LqcayBH9VWV7wWNz5W7KhGYQ==", + "type": "package", + "path": "cijobs/0.0.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "cijobs.0.0.1.2.nupkg.sha512", + "cijobs.nuspec", + "lib/netcoreapp1.0/cijobs.dll", + "lib/netcoreapp1.0/cijobs.runtimeconfig.json" + ] + }, + "jit-analyze/0.0.1.1": { + "sha512": "BStecbK+lI8dkKfkuXKttolZXxzVbnd5NSy+oZBdKm8ww+IHJ8Ox/DDHwvuVQfc+Nf0z9r1dMMOCKhXfPFcXbg==", + "type": "package", + "path": "jit-analyze/0.0.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jit-analyze.0.0.1.1.nupkg.sha512", + "jit-analyze.nuspec", + "lib/netcoreapp1.0/jit-analyze.dll", + "lib/netcoreapp1.0/jit-analyze.runtimeconfig.json" + ] + }, + "jit-dasm/0.0.1.4": { + "sha512": "Ipm3ik3mBaGj760hqc+sc6GAarPnhlaiW4R1HiCSMrytPuJ/KevEL9qG3G9CvR60S0hhZ2iVs4VZ4+pj50Lt6Q==", + "type": "package", + "path": "jit-dasm/0.0.1.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "jit-dasm.0.0.1.4.nupkg.sha512", + "jit-dasm.nuspec", + "lib/netcoreapp1.0/jit-dasm.dll", + "lib/netcoreapp1.0/jit-dasm.runtimeconfig.json" + ] + }, + "Libuv/1.9.0": { + "sha512": "9Q7AaqtQhS8JDSIvRBt6ODSLWDBI4c8YxNxyCQemWebBFUtBbc6M5Vi5Gz1ZyIUlTW3rZK9bIr5gnVyv0z7a2Q==", + "type": "package", + "path": "libuv/1.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "License.txt", + "libuv.1.9.0.nupkg.sha512", + "libuv.nuspec", + "runtimes/debian-x64/native/libuv.so", + "runtimes/fedora-x64/native/libuv.so", + "runtimes/opensuse-x64/native/libuv.so", + "runtimes/osx/native/libuv.dylib", + "runtimes/rhel-x64/native/libuv.so", + "runtimes/win7-arm/native/libuv.dll", + "runtimes/win7-x64/native/libuv.dll", + "runtimes/win7-x86/native/libuv.dll" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "sha512": "HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/1.1.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.rtf", + "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", + "microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.3.0": { + "sha512": "V09G35cs0CT1C4Dr1IEOh8IGfnWALEVAOO5JXsqagxXwmYR012TlorQ+vx2eXxfZRKs3gAS/r92gN9kRBLba5A==", + "type": "package", + "path": "microsoft.codeanalysis.common/1.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/netstandard1.3/Microsoft.CodeAnalysis.dll", + "lib/netstandard1.3/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "microsoft.codeanalysis.common.1.3.0.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.3.0": { + "sha512": "BgWDIAbSFsHuGeLSn/rljLi51nXqkSo4DZ0qEIrHyPVasrhxEVq7aV8KKZ3HEfSFB+GIhBmOogE+mlOLYg19eg==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/1.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "microsoft.codeanalysis.csharp.1.3.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeAnalysis.VisualBasic/1.3.0": { + "sha512": "Sf3k8PkTkWqBmXnnblJbvb7ewO6mJzX6WO2t7m04BmOY5qBq6yhhyXnn/BMM+QCec3Arw3X35Zd8f9eBql0qgg==", + "type": "package", + "path": "microsoft.codeanalysis.visualbasic/1.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "lib/net45/Microsoft.CodeAnalysis.VisualBasic.dll", + "lib/net45/Microsoft.CodeAnalysis.VisualBasic.xml", + "lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.dll", + "lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.xml", + "microsoft.codeanalysis.visualbasic.1.3.0.nupkg.sha512", + "microsoft.codeanalysis.visualbasic.nuspec" + ] + }, + "Microsoft.CSharp/4.0.1": { + "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==", + "type": "package", + "path": "microsoft.csharp/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.0.1.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.DotNet.Cli.Utils/1.0.0-preview2-003121": { + "sha512": "FLXqhQjkjj83Sh0TRlLEyMIMtAhDRJuPRWnDONtnCv5bozk1jPzflLEXYbk2xsnsOMpnYrUvKQbwUKUWyaXuFQ==", + "type": "package", + "path": "microsoft.dotnet.cli.utils/1.0.0-preview2-003121", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net451/Microsoft.DotNet.Cli.Utils.dll", + "lib/netstandard1.6/Microsoft.DotNet.Cli.Utils.dll", + "microsoft.dotnet.cli.utils.1.0.0-preview2-003121.nupkg.sha512", + "microsoft.dotnet.cli.utils.nuspec" + ] + }, + "Microsoft.DotNet.CoreCLR.TestDependencies/1.0.0-prerelease": { + "sha512": "vz04+hDn8cLuWssbzTfJ8qhtfjkUSrGiW35crQYMy+a7pLfUbaFUiU3oDEe9maUV8/RNqsoels3MBK2vJB5Nhw==", + "type": "package", + "path": "microsoft.dotnet.coreclr.testdependencies/1.0.0-prerelease", + "files": [ + ".nupkg.metadata", + "lib/aspnetcore50/API-MS-Win-Base-Util-L1-1-0.dll", + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll", + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll", + "lib/aspnetcore50/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", + "lib/aspnetcore50/API-MS-Win-Core-PrivateProfile-L1-1-0.dll", + "lib/aspnetcore50/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll", + "lib/aspnetcore50/API-MS-Win-Core-String-L2-1-0.dll", + "lib/aspnetcore50/API-MS-Win-Core-StringAnsi-L1-1-0.dll", + "lib/aspnetcore50/API-MS-Win-EventLog-Legacy-L1-1-0.dll", + "lib/aspnetcore50/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll", + "lib/aspnetcore50/API-MS-Win-Eventing-Consumer-L1-1-0.dll", + "lib/aspnetcore50/API-MS-Win-Eventing-Controller-L1-1-0.dll", + "lib/aspnetcore50/API-MS-Win-Eventing-Legacy-L1-1-0.dll", + "lib/aspnetcore50/API-MS-Win-Eventing-Provider-L1-1-0.dll", + "lib/aspnetcore50/API-MS-Win-Security-LsaPolicy-L1-1-0.dll", + "lib/aspnetcore50/API-MS-Win-devices-config-L1-1-0.dll", + "lib/aspnetcore50/API-MS-Win-devices-config-L1-1-1.dll", + "lib/aspnetcore50/System.Core.dll", + "lib/aspnetcore50/System.Xml.Linq.dll", + "lib/aspnetcore50/System.Xml.dll", + "lib/aspnetcore50/System.dll", + "lib/aspnetcore50/api-ms-win-core-com-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-com-private-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-comm-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-console-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-console-l2-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-datetime-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-datetime-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-debug-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-debug-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-delayload-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-errorhandling-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-errorhandling-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-fibers-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-fibers-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-file-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-file-l1-2-0.dll", + "lib/aspnetcore50/api-ms-win-core-file-l1-2-1.dll", + "lib/aspnetcore50/api-ms-win-core-file-l2-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-file-l2-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-handle-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-heap-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-heap-obsolete-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-interlocked-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-io-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-io-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-kernel32-legacy-l1-1-2.dll", + "lib/aspnetcore50/api-ms-win-core-libraryloader-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-libraryloader-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-localization-l1-2-0.dll", + "lib/aspnetcore50/api-ms-win-core-localization-l1-2-1.dll", + "lib/aspnetcore50/api-ms-win-core-localization-l2-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-localization-obsolete-l1-2-0.dll", + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-2.dll", + "lib/aspnetcore50/api-ms-win-core-memory-l1-1-3.dll", + "lib/aspnetcore50/api-ms-win-core-namedpipe-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-normalization-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-privateprofile-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-processenvironment-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-processenvironment-l1-2-0.dll", + "lib/aspnetcore50/api-ms-win-core-processsecurity-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-processthreads-l1-1-2.dll", + "lib/aspnetcore50/api-ms-win-core-profile-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-psapi-ansi-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-psapi-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-psapi-obsolete-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-realtime-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-registry-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-registry-l2-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-rtlsupport-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-shlwapi-legacy-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-shutdown-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-shutdown-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-string-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-string-obsolete-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-string-obsolete-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-stringloader-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-stringloader-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-synch-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-synch-l1-2-0.dll", + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-0.dll", + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-1.dll", + "lib/aspnetcore50/api-ms-win-core-sysinfo-l1-2-2.dll", + "lib/aspnetcore50/api-ms-win-core-threadpool-l1-2-0.dll", + "lib/aspnetcore50/api-ms-win-core-threadpool-legacy-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-threadpool-private-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-timezone-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-url-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-util-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-version-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-winrt-error-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-winrt-error-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-core-winrt-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-winrt-registration-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-winrt-robuffer-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-winrt-string-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-wow64-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-xstate-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-core-xstate-l2-1-0.dll", + "lib/aspnetcore50/api-ms-win-ro-typeresolution-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-security-base-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-security-cryptoapi-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-security-lsalookup-l2-1-0.dll", + "lib/aspnetcore50/api-ms-win-security-lsalookup-l2-1-1.dll", + "lib/aspnetcore50/api-ms-win-security-provider-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-security-sddl-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-service-core-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-service-core-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-service-management-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-service-management-l2-1-0.dll", + "lib/aspnetcore50/api-ms-win-service-private-l1-1-0.dll", + "lib/aspnetcore50/api-ms-win-service-private-l1-1-1.dll", + "lib/aspnetcore50/api-ms-win-service-winsvc-l1-1-0.dll", + "microsoft.dotnet.coreclr.testdependencies.1.0.0-prerelease.nupkg.sha512", + "microsoft.dotnet.coreclr.testdependencies.nuspec" + ] + }, + "Microsoft.DotNet.InternalAbstractions/1.0.0": { + "sha512": "AAguUq7YyKk3yDWPoWA8DrLZvURxB/LrDdTn1h5lmPeznkFUpfC3p459w5mQYQE0qpquf/CkSQZ0etiV5vRHFA==", + "type": "package", + "path": "microsoft.dotnet.internalabstractions/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net451/Microsoft.DotNet.InternalAbstractions.dll", + "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll", + "microsoft.dotnet.internalabstractions.1.0.0.nupkg.sha512", + "microsoft.dotnet.internalabstractions.nuspec" + ] + }, + "Microsoft.DotNet.ProjectModel/1.0.0-rc3-003121": { + "sha512": "wnWw5KsKinG2wWxdoQIJXZlMFvPNhL7WmIyW9q6xrZFUi/uld5PC3ksq2QDZepF148FUjCIyTP+TnRwU3RJqUg==", + "type": "package", + "path": "microsoft.dotnet.projectmodel/1.0.0-rc3-003121", + "files": [ + ".nupkg.metadata", + "lib/net451/Microsoft.DotNet.ProjectModel.dll", + "lib/netstandard1.6/Microsoft.DotNet.ProjectModel.dll", + "microsoft.dotnet.projectmodel.1.0.0-rc3-003121.nupkg.sha512", + "microsoft.dotnet.projectmodel.nuspec" + ] + }, + "Microsoft.Extensions.DependencyModel/1.0.0": { + "sha512": "n55Y2T4qMgCNMrJaqAN+nlG2EH4XL+e9uxIg4vdFsQeF+L8UKxRdD3C35Bt+xk3vO3Zwp3g+6KFq2VPH2COSmg==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net451/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll", + "microsoft.extensions.dependencymodel.1.0.0.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec" + ] + }, + "Microsoft.NETCore.App/1.0.0": { + "sha512": "Bv40dLDrT+Igcg1e6otW3D8voeJCfcAxOlsxSVlDz+J+cdWls5kblZvPHHvx7gX3/oJoQVIkEeO3sMyv5PSVJA==", + "type": "package", + "path": "microsoft.netcore.app/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netcoreapp1.0/_._", + "microsoft.netcore.app.1.0.0.nupkg.sha512", + "microsoft.netcore.app.nuspec" + ] + }, + "Microsoft.NETCore.DotNetHost/1.0.1": { + "sha512": "uaMgykq6AckP3hZW4dsD6zjocxyXPz0tcTl8OX7mlSUWsyFXdtf45sjdwI0JIHxt3gnI6GihAlOAwYK8HE4niQ==", + "type": "package", + "path": "microsoft.netcore.dotnethost/1.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "microsoft.netcore.dotnethost.1.0.1.nupkg.sha512", + "microsoft.netcore.dotnethost.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.DotNetHostPolicy/1.0.1": { + "sha512": "d8AQ+ZVj2iK9sbgl3IEsshCSaumhM1PNTPHxldZAQLOoI1BKF8QZ1zPCNqwBGisPiWOE3f/1SHDbQi1BTRBxuA==", + "type": "package", + "path": "microsoft.netcore.dotnethostpolicy/1.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "microsoft.netcore.dotnethostpolicy.1.0.1.nupkg.sha512", + "microsoft.netcore.dotnethostpolicy.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.DotNetHostResolver/1.0.1": { + "sha512": "GEXgpAHB9E0OhfcmNJ664Xcd2bJkz2qkGIAFmCgEI5ANlQy4qEEmBVfUqA+Z9HB85ZwWxZc1eIJ6fxdxcjrctg==", + "type": "package", + "path": "microsoft.netcore.dotnethostresolver/1.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "microsoft.netcore.dotnethostresolver.1.0.1.nupkg.sha512", + "microsoft.netcore.dotnethostresolver.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Jit/1.0.2": { + "sha512": "Ok2vWofa6X8WD9vc4pfLHwvJz1/B6t3gOAoZcjrjrQf7lQOlNIuZIZtLn3wnWX28DuQGpPJkRlBxFj7Z5txNqw==", + "type": "package", + "path": "microsoft.netcore.jit/1.0.2", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "microsoft.netcore.jit.1.0.2.nupkg.sha512", + "microsoft.netcore.jit.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "sha512": "Clr2Jue6oyBlnsVf9g5qjoi06+QDYVq+U32buU9W+mRYeIFg4LXeJei1q6P/1niiKX8WIVo7KbBnqW80jVcOvw==", + "type": "package", + "path": "microsoft.netcore.platforms/3.1.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.3.1.0-preview3.19551.4.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { + "sha512": "A0x1xtTjYJWZr2DRzgfCOXgB0JkQg8twnmtTJ79wFje+IihlLbXtx6Z2AxyVokBM5ruwTedR6YdCmHk39QJdtQ==", + "type": "package", + "path": "microsoft.netcore.runtime.coreclr/1.0.2", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "microsoft.netcore.runtime.coreclr.1.0.2.nupkg.sha512", + "microsoft.netcore.runtime.coreclr.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Targets/1.0.1": { + "sha512": "rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==", + "type": "package", + "path": "microsoft.netcore.targets/1.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.0.1.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "sha512": "SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", + "type": "package", + "path": "microsoft.netcore.windows.apisets/1.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512", + "microsoft.netcore.windows.apisets.nuspec", + "runtime.json" + ] + }, + "Microsoft.VisualBasic/10.0.1": { + "sha512": "HpNyOf/4Tp2lh4FyywB55VITk0SqVxEjDzsVDDyF1yafDN6Bq18xcHowzCPINyYHUTgGcEtmpYiRsFdSo0KKdQ==", + "type": "package", + "path": "microsoft.visualbasic/10.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net45/_._", + "lib/netcore50/Microsoft.VisualBasic.dll", + "lib/netstandard1.3/Microsoft.VisualBasic.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "microsoft.visualbasic.10.0.1.nupkg.sha512", + "microsoft.visualbasic.nuspec", + "ref/net45/_._", + "ref/netcore50/Microsoft.VisualBasic.dll", + "ref/netcore50/Microsoft.VisualBasic.xml", + "ref/netcore50/de/Microsoft.VisualBasic.xml", + "ref/netcore50/es/Microsoft.VisualBasic.xml", + "ref/netcore50/fr/Microsoft.VisualBasic.xml", + "ref/netcore50/it/Microsoft.VisualBasic.xml", + "ref/netcore50/ja/Microsoft.VisualBasic.xml", + "ref/netcore50/ko/Microsoft.VisualBasic.xml", + "ref/netcore50/ru/Microsoft.VisualBasic.xml", + "ref/netcore50/zh-hans/Microsoft.VisualBasic.xml", + "ref/netcore50/zh-hant/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/Microsoft.VisualBasic.dll", + "ref/netstandard1.1/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/de/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/es/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/fr/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/it/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/ja/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/ko/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/ru/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/zh-hans/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/zh-hant/Microsoft.VisualBasic.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._" + ] + }, + "Microsoft.Win32.Primitives/4.0.1": { + "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==", + "type": "package", + "path": "microsoft.win32.primitives/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.0.1.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Win32.Registry/4.0.0": { + "sha512": "q+eLtROUAQ3OxYA5mpQrgyFgzLQxIyrfT2eLpYX5IEPlHmIio2nh4F5bgOaQoGOV865kFKZZso9Oq9RlazvXtg==", + "type": "package", + "path": "microsoft.win32.registry/4.0.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/Microsoft.Win32.Registry.dll", + "microsoft.win32.registry.4.0.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll" + ] + }, + "NETStandard.Library/1.6.0": { + "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==", + "type": "package", + "path": "netstandard.library/1.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.0.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/9.0.1": { + "sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==", + "type": "package", + "path": "newtonsoft.json/9.0.1", + "hasTools": true, + "files": [ + ".nupkg.metadata", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml", + "newtonsoft.json.9.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "tools/install.ps1" + ] + }, + "NuGet.Common/3.5.0-beta2-1484": { + "sha512": "rLBmcZOPVF7Mne/LumDNACZZyI5B67hjylt+Z/WSEUQ/IXE9nLv8IVL0+T9xljIaSSQCjO8cOtmJ6ztqrsQKcQ==", + "type": "package", + "path": "nuget.common/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/NuGet.Common.dll", + "lib/net45/NuGet.Common.xml", + "lib/netstandard1.3/NuGet.Common.dll", + "lib/netstandard1.3/NuGet.Common.xml", + "nuget.common.3.5.0-beta2-1484.nupkg.sha512", + "nuget.common.nuspec" + ] + }, + "NuGet.Configuration/3.5.0-beta2-1484": { + "sha512": "ee2jhTjPMztWmUIuaM1pdVRytXO7n8V/ZlENzJ/uTsZcnAbPZZLasAUoKJf7kKacBNTfSHd1MmWII/YweHWPGQ==", + "type": "package", + "path": "nuget.configuration/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/NuGet.Configuration.dll", + "lib/net45/NuGet.Configuration.xml", + "lib/netstandard1.3/NuGet.Configuration.dll", + "lib/netstandard1.3/NuGet.Configuration.xml", + "nuget.configuration.3.5.0-beta2-1484.nupkg.sha512", + "nuget.configuration.nuspec" + ] + }, + "NuGet.DependencyResolver.Core/3.5.0-beta2-1484": { + "sha512": "C33r3vl2eMbo3YFi7mKMnyFBSVzXxaQA045913UpQQi6oIFkNn8m9Ozztbfv7wQXQGlG+ftopObFE/Ig5I2e8Q==", + "type": "package", + "path": "nuget.dependencyresolver.core/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/NuGet.DependencyResolver.Core.dll", + "lib/net45/NuGet.DependencyResolver.Core.xml", + "lib/netstandard1.3/NuGet.DependencyResolver.Core.dll", + "lib/netstandard1.3/NuGet.DependencyResolver.Core.xml", + "nuget.dependencyresolver.core.3.5.0-beta2-1484.nupkg.sha512", + "nuget.dependencyresolver.core.nuspec" + ] + }, + "NuGet.Frameworks/3.5.0-beta2-1484": { + "sha512": "AZoX0c05qgSfx0IOGTbLXa2fD7eM2WUqKP3osMMvSxK+tOGmctHuFlvjXxMHBv9yg0/13KdH0osV/zI7+SjzOA==", + "type": "package", + "path": "nuget.frameworks/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net40-client/NuGet.Frameworks.dll", + "lib/net40-client/NuGet.Frameworks.xml", + "lib/net45/NuGet.Frameworks.dll", + "lib/net45/NuGet.Frameworks.xml", + "lib/netstandard1.3/NuGet.Frameworks.dll", + "lib/netstandard1.3/NuGet.Frameworks.xml", + "nuget.frameworks.3.5.0-beta2-1484.nupkg.sha512", + "nuget.frameworks.nuspec" + ] + }, + "NuGet.LibraryModel/3.5.0-beta2-1484": { + "sha512": "DliyPvB2O5sLAjhlBceACSm6fzzPDoWRdzbs/7Z89TWqp2JRQ98I5ds5HzeMJjfqO6t1BYoCVDV0h1ymoTuyVQ==", + "type": "package", + "path": "nuget.librarymodel/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/NuGet.LibraryModel.dll", + "lib/net45/NuGet.LibraryModel.xml", + "lib/netstandard1.3/NuGet.LibraryModel.dll", + "lib/netstandard1.3/NuGet.LibraryModel.xml", + "nuget.librarymodel.3.5.0-beta2-1484.nupkg.sha512", + "nuget.librarymodel.nuspec" + ] + }, + "NuGet.Packaging/3.5.0-beta2-1484": { + "sha512": "/+7d3vvCel4KhJo6AyOneg07fbAkUsy/ORgIaxW3nNdJubCXSrAdg1wfQpwzBygmErjrPcdYzzk2y2Sc6m7hwQ==", + "type": "package", + "path": "nuget.packaging/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/NuGet.Packaging.dll", + "lib/net45/NuGet.Packaging.xml", + "lib/netstandard1.3/NuGet.Packaging.dll", + "lib/netstandard1.3/NuGet.Packaging.xml", + "nuget.packaging.3.5.0-beta2-1484.nupkg.sha512", + "nuget.packaging.nuspec" + ] + }, + "NuGet.Packaging.Core/3.5.0-beta2-1484": { + "sha512": "Lsz2lgYH0mdOvuL8C3G4XLm9EaAheBOqrgLgnBNxCeLGLU+n+Zu8Lt6K1bpzgkeKyTyAhJdWbv/3lS4w7s04gw==", + "type": "package", + "path": "nuget.packaging.core/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/NuGet.Packaging.Core.dll", + "lib/net45/NuGet.Packaging.Core.xml", + "lib/netstandard1.3/NuGet.Packaging.Core.dll", + "lib/netstandard1.3/NuGet.Packaging.Core.xml", + "nuget.packaging.core.3.5.0-beta2-1484.nupkg.sha512", + "nuget.packaging.core.nuspec" + ] + }, + "NuGet.Packaging.Core.Types/3.5.0-beta2-1484": { + "sha512": "4mEXZBoe/RKTDVQGwdrl/f5gqolU2d1JWjpbGdQv5EG/xQCC8IQ8FTNYzk0+ydV/vuRM1yaNe+6UQ90nGE+1kQ==", + "type": "package", + "path": "nuget.packaging.core.types/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/NuGet.Packaging.Core.Types.dll", + "lib/net45/NuGet.Packaging.Core.Types.xml", + "lib/netstandard1.3/NuGet.Packaging.Core.Types.dll", + "lib/netstandard1.3/NuGet.Packaging.Core.Types.xml", + "nuget.packaging.core.types.3.5.0-beta2-1484.nupkg.sha512", + "nuget.packaging.core.types.nuspec" + ] + }, + "NuGet.ProjectModel/3.5.0-beta2-1484": { + "sha512": "7SFxD1wBRusat8rJm/hICDues0Fm9ECNJLaxbzq6xdPBBN3NljGMp3V3ZeyEose6ItetqPBY9+ZcKhiPIsmx6A==", + "type": "package", + "path": "nuget.projectmodel/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/NuGet.ProjectModel.dll", + "lib/net45/NuGet.ProjectModel.xml", + "lib/netstandard1.3/NuGet.ProjectModel.dll", + "lib/netstandard1.3/NuGet.ProjectModel.xml", + "nuget.projectmodel.3.5.0-beta2-1484.nupkg.sha512", + "nuget.projectmodel.nuspec" + ] + }, + "NuGet.Protocol.Core.Types/3.5.0-beta2-1484": { + "sha512": "y+HMFeV4/vqryIhRQATC1HZvE9QOGgOwesCUWlVAY24yi4HcTTVWWSv0WVX8OzJj+uobYWVfICFyC28JnuMEoA==", + "type": "package", + "path": "nuget.protocol.core.types/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/NuGet.Protocol.Core.Types.dll", + "lib/net45/NuGet.Protocol.Core.Types.xml", + "lib/netstandard1.3/NuGet.Protocol.Core.Types.dll", + "lib/netstandard1.3/NuGet.Protocol.Core.Types.xml", + "nuget.protocol.core.types.3.5.0-beta2-1484.nupkg.sha512", + "nuget.protocol.core.types.nuspec" + ] + }, + "NuGet.Protocol.Core.v3/3.5.0-beta2-1484": { + "sha512": "DsLSsObYuTF9CJ22/ti5femoz1H5zZiQ5SjnZjhoNrz26Af0M9y3fcLvJGTFO7xPDU6QC1G9lZ0fNW7ucH/GpQ==", + "type": "package", + "path": "nuget.protocol.core.v3/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/NuGet.Protocol.Core.v3.dll", + "lib/net45/NuGet.Protocol.Core.v3.xml", + "lib/netstandard1.3/NuGet.Protocol.Core.v3.dll", + "lib/netstandard1.3/NuGet.Protocol.Core.v3.xml", + "nuget.protocol.core.v3.3.5.0-beta2-1484.nupkg.sha512", + "nuget.protocol.core.v3.nuspec" + ] + }, + "NuGet.Repositories/3.5.0-beta2-1484": { + "sha512": "+3ozgJleYPKL2VG44XRzVyFGu8dLOIJ2Kohg2VY87DzTJEnH3kLOMhudZERowNxxzfJpwiSDUXNsDNiWH4EujA==", + "type": "package", + "path": "nuget.repositories/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/NuGet.Repositories.dll", + "lib/net45/NuGet.Repositories.xml", + "lib/netstandard1.3/NuGet.Repositories.dll", + "lib/netstandard1.3/NuGet.Repositories.xml", + "nuget.repositories.3.5.0-beta2-1484.nupkg.sha512", + "nuget.repositories.nuspec" + ] + }, + "NuGet.RuntimeModel/3.5.0-beta2-1484": { + "sha512": "vg29WbKcExD9AJrKMr7NB9pnp+0MTAcDHB6gFHCqRynSo6jgjC8q+ZPAlxC115rQiO8fqzOEP59Q8hx20anUtA==", + "type": "package", + "path": "nuget.runtimemodel/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/NuGet.RuntimeModel.dll", + "lib/net45/NuGet.RuntimeModel.xml", + "lib/netstandard1.3/NuGet.RuntimeModel.dll", + "lib/netstandard1.3/NuGet.RuntimeModel.xml", + "nuget.runtimemodel.3.5.0-beta2-1484.nupkg.sha512", + "nuget.runtimemodel.nuspec" + ] + }, + "NuGet.Versioning/3.5.0-beta2-1484": { + "sha512": "Stok+SI5lWxOkTgZZM7jT4xuAZogm5+j85mKJeHSXb8o0OAbB+qDX9jkdM2wIEnjoR8R29J0nQYwk2Kl2lWFpA==", + "type": "package", + "path": "nuget.versioning/3.5.0-beta2-1484", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/NuGet.Versioning.dll", + "lib/net45/NuGet.Versioning.xml", + "lib/netstandard1.0/NuGet.Versioning.dll", + "lib/netstandard1.0/NuGet.Versioning.xml", + "nuget.versioning.3.5.0-beta2-1484.nupkg.sha512", + "nuget.versioning.nuspec" + ] + }, + "runtime.any.System.Collections/4.0.11": { + "sha512": "MTBT/hu37Dm2042H1JjWSaMd8w+oPJ4ZWAbDNeLzC4ZHdqwHloP07KvD6+4VbwipDqY5obfFFy90mZYCaPDh5Q==", + "type": "package", + "path": "runtime.any.system.collections/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.dll", + "lib/netstandard1.3/System.Collections.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.collections.4.0.11.nupkg.sha512", + "runtime.any.system.collections.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Diagnostics.Tools/4.0.1": { + "sha512": "GJkwEYbKw7qG29QrKMIEEZEGWxC+DQboeObhaM6WPKKgwk9Od8Qt8lWhr/+5xW3FF60TdMfjjUP8Zu6Y41wIkA==", + "type": "package", + "path": "runtime.any.system.diagnostics.tools/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/netstandard1.3/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tools.4.0.1.nupkg.sha512", + "runtime.any.system.diagnostics.tools.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Diagnostics.Tracing/4.1.0": { + "sha512": "x7VLOl/v504jX97YEMePamZRHA3cJPOFY/xLw9pgjDr0Q3IQIZ+0K4oiKKtQrfMYSvOAntkzw+EvvQ+OWGRL9w==", + "type": "package", + "path": "runtime.any.system.diagnostics.tracing/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "lib/netstandard1.5/System.Diagnostics.Tracing.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tracing.4.1.0.nupkg.sha512", + "runtime.any.system.diagnostics.tracing.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Globalization/4.0.11": { + "sha512": "cjJ3+b83Tpf02AIc5FkGj1vzY68RnsVHiGLrOCc5n7gpNVg1JnZrt1mcY99ykQ/wr3nCdvSP2pYvdxbYsxZdlA==", + "type": "package", + "path": "runtime.any.system.globalization/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Globalization.dll", + "lib/netstandard1.3/System.Globalization.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.4.0.11.nupkg.sha512", + "runtime.any.system.globalization.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Globalization.Calendars/4.0.1": { + "sha512": "SAdVwIKKKR3VG9NMKEgF+wbAKkQA60YOb4G9YGj4EUPsuwS+pH7FjjG6qQeXDyOaxUcrlRzI3LHcGloX/GHBxQ==", + "type": "package", + "path": "runtime.any.system.globalization.calendars/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net/_._", + "lib/netcore50/System.Globalization.Calendars.dll", + "lib/netstandard1.3/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.calendars.4.0.1.nupkg.sha512", + "runtime.any.system.globalization.calendars.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.IO/4.1.0": { + "sha512": "sC7zKVdhYQEtrREKBJf4zkUwNdi6fsbkzrhJLDIAxIxD+YA5PABAQJps13zxpA1Ke3AgzOA9551JDymAfmRuTg==", + "type": "package", + "path": "runtime.any.system.io/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.IO.dll", + "lib/netstandard1.5/System.IO.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.io.4.1.0.nupkg.sha512", + "runtime.any.system.io.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Reflection/4.1.0": { + "sha512": "eKq6/GprEINYbugjWf2V9cjkyuAH/y+Raed28PJQ35zd30oR/pvKEHNN8JbPAgzYpI09TCd1yuhXN/Rb8PM8GA==", + "type": "package", + "path": "runtime.any.system.reflection/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.dll", + "lib/netstandard1.5/System.Reflection.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.4.1.0.nupkg.sha512", + "runtime.any.system.reflection.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Reflection.Extensions/4.0.1": { + "sha512": "ajAAD1MHX4KSNq/CW0d1IMlq5seVTuzTMMhA5EFWagMejfamzljIL92/wD19eK/1mPuux5nb16K4PFBYQrZOrQ==", + "type": "package", + "path": "runtime.any.system.reflection.extensions/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/netstandard1.3/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.extensions.4.0.1.nupkg.sha512", + "runtime.any.system.reflection.extensions.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Reflection.Primitives/4.0.1": { + "sha512": "oKs78h11WDhCGFNpxT26IqL8Oo8OBzr6YOW0WG+R14FGaB/WDM5UHiK/jr6dipdnO8Wxlg/U48ka6uaPM6l53w==", + "type": "package", + "path": "runtime.any.system.reflection.primitives/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/netstandard1.3/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.primitives.4.0.1.nupkg.sha512", + "runtime.any.system.reflection.primitives.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Resources.ResourceManager/4.0.1": { + "sha512": "hes7WFTOERydB/hLGmLj66NbK7I2AnjLHEeTpf7EmPZOIrRWeuC1dPoFYC9XRVIVzfCcOZI7oXM7KXe4vakt9Q==", + "type": "package", + "path": "runtime.any.system.resources.resourcemanager/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/netstandard1.3/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.resources.resourcemanager.4.0.1.nupkg.sha512", + "runtime.any.system.resources.resourcemanager.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Runtime/4.1.0": { + "sha512": "0QVLwEGXROl0Trt2XosEjly9uqXcjHKStoZyZG9twJYFZJqq2JJXcBMXl/fnyQAgYEEODV8lUsU+t7NCCY0nUQ==", + "type": "package", + "path": "runtime.any.system.runtime/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.dll", + "lib/netstandard1.5/System.Runtime.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.4.1.0.nupkg.sha512", + "runtime.any.system.runtime.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Runtime.Handles/4.0.1": { + "sha512": "MZ5fVmAE/3S11wt3hPfn3RsAHppj5gUz+VZuLQkRjLCMSlX0krOI601IZsMWc3CoxUb+wMt3gZVb/mEjblw6Mg==", + "type": "package", + "path": "runtime.any.system.runtime.handles/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netstandard1.3/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.handles.4.0.1.nupkg.sha512", + "runtime.any.system.runtime.handles.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Runtime.InteropServices/4.1.0": { + "sha512": "gmibdZ9x/eB6hf5le33DWLCQbhcIUD2vqoc0tBgqSUWlB8YjEzVJXyTPDO+ypKLlL90Kv3ZDrK7yPCNqcyhqCA==", + "type": "package", + "path": "runtime.any.system.runtime.interopservices/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "lib/netstandard1.5/System.Runtime.InteropServices.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.interopservices.4.1.0.nupkg.sha512", + "runtime.any.system.runtime.interopservices.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Text.Encoding/4.0.11": { + "sha512": "uweRMRDD4O8Iy8m4h1cJvoFIHNCzHMpipuxkRNAMML6EMzAhDCQTjgvRwki7PlUg8RGY1ctXnBZjT1rXvMZuRw==", + "type": "package", + "path": "runtime.any.system.text.encoding/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/netstandard1.3/System.Text.Encoding.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.4.0.11.nupkg.sha512", + "runtime.any.system.text.encoding.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Text.Encoding.Extensions/4.0.11": { + "sha512": "3n6qbf59NMgA7F9S+q9gmqFV7T/CtAZw2pa6aprfdZxUinR2mDvVchsgthoacpQvAQu6e3ok8WWeypSu/yjXrA==", + "type": "package", + "path": "runtime.any.system.text.encoding.extensions/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.extensions.4.0.11.nupkg.sha512", + "runtime.any.system.text.encoding.extensions.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Threading.Tasks/4.0.11": { + "sha512": "CEvWO0IwtdCAsmCb9aAl59psy0hzx+whYh4DzbjNb0GsQmxw/G7bZEcrBtE8c9QupNVbu87c2xaMi6p4r1bpjA==", + "type": "package", + "path": "runtime.any.system.threading.tasks/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/netstandard1.3/System.Threading.Tasks.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.tasks.4.0.11.nupkg.sha512", + "runtime.any.system.threading.tasks.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Threading.Timer/4.0.1": { + "sha512": "C9d5eRAW/gd5iBZF78JRcwjvjCDRfU0oB48/wx/XbKnONZU4k6hWneTT4M7v3TmVqPFl7UDcLzKCtQ/24efOzw==", + "type": "package", + "path": "runtime.any.system.threading.timer/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/netstandard1.3/System.Threading.Timer.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.timer.4.0.1.nupkg.sha512", + "runtime.any.system.threading.timer.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.native.System/4.0.0": { + "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==", + "type": "package", + "path": "runtime.native.system/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.0.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.IO.Compression/4.1.0": { + "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==", + "type": "package", + "path": "runtime.native.system.io.compression/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.1.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.0.1": { + "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==", + "type": "package", + "path": "runtime.native.system.net.http/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.0.1.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Net.Security/4.0.1": { + "sha512": "Az6Ff6rZFb8nYGAaejFR6jr8ktt9f3e1Q/yKdw0pwHNTLaO/1eCAC9vzBoR9YAb0QeZD6fZXl1A9tRB5stpzXA==", + "type": "package", + "path": "runtime.native.system.net.security/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.security.4.0.1.nupkg.sha512", + "runtime.native.system.net.security.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography/4.0.0": { + "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==", + "type": "package", + "path": "runtime.native.system.security.cryptography/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512", + "runtime.native.system.security.cryptography.nuspec" + ] + }, + "runtime.unix.Microsoft.Win32.Primitives/4.0.1": { + "sha512": "dcdSZXTbbjgER84+V+WCUt2JLsN8VwpeGljqD+4qIAgf1sUdz6EvknOa5HTv7iuo4EpRHQo8uqfRrLr9G8TyLA==", + "type": "package", + "path": "runtime.unix.microsoft.win32.primitives/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.microsoft.win32.primitives.4.0.1.nupkg.sha512", + "runtime.unix.microsoft.win32.primitives.nuspec", + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Primitives.dll" + ] + }, + "runtime.unix.System.Console/4.0.0": { + "sha512": "OV2TOJkDPXRbp1hhmKV0/U6ZtDQY2SL/VJMs89R9PlH+ZyrbMRF8coT5ZC6m0LsmCDc25AlHyjegIIg+lWVwTw==", + "type": "package", + "path": "runtime.unix.system.console/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.console.4.0.0.nupkg.sha512", + "runtime.unix.system.console.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Console.dll" + ] + }, + "runtime.unix.System.Diagnostics.Debug/4.0.11": { + "sha512": "dGIYWbyqSlMlZrsqtU/TdvVNp8lieqowdGBVMi6nFTIiCqrL+RbdiJORguexXNjHtFZR30eE6zPWGxuL60NYFw==", + "type": "package", + "path": "runtime.unix.system.diagnostics.debug/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.diagnostics.debug.4.0.11.nupkg.sha512", + "runtime.unix.system.diagnostics.debug.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.Debug.dll" + ] + }, + "runtime.unix.System.IO.FileSystem/4.0.1": { + "sha512": "7dft+dHYKOXOAnXExVE6OGmifNnSDCrJymApD0l6t2bZUdpai66La9dNqT2eqPhiQXVR3eV61gzkfaIEsuK0pA==", + "type": "package", + "path": "runtime.unix.system.io.filesystem/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.io.filesystem.4.0.1.nupkg.sha512", + "runtime.unix.system.io.filesystem.nuspec", + "runtimes/unix/lib/netstandard1.3/System.IO.FileSystem.dll" + ] + }, + "runtime.unix.System.Net.Primitives/4.0.11": { + "sha512": "lGTv6mxF1cOKzTKMww/c2qubIgjZbD5hzAjCgLnwjCaMpB+MPsm6OsjDRh3kPlQMNdUdlQOQ7pTRrze0DhlASQ==", + "type": "package", + "path": "runtime.unix.system.net.primitives/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.net.primitives.4.0.11.nupkg.sha512", + "runtime.unix.system.net.primitives.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Net.Primitives.dll" + ] + }, + "runtime.unix.System.Net.Sockets/4.1.0": { + "sha512": "bwBMwAyzHZubcjmSGKEv5FQGZw3AT4ydLpc+q5K7l3vOopV0xBqUp7nBg8QMh+ZT4qzog14LBztz+auluh4KLg==", + "type": "package", + "path": "runtime.unix.system.net.sockets/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.net.sockets.4.1.0.nupkg.sha512", + "runtime.unix.system.net.sockets.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Net.Sockets.dll" + ] + }, + "runtime.unix.System.Private.Uri/4.0.1": { + "sha512": "m+7TLWWw4cA44vGxcKpMdV2Lgx6HWOe5rUb5RIADE04S6fJNEwXO6u+KY7oWFJQYn5644NyhSxB9oV28fF94NQ==", + "type": "package", + "path": "runtime.unix.system.private.uri/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.private.uri.4.0.1.nupkg.sha512", + "runtime.unix.system.private.uri.nuspec", + "runtimes/unix/lib/netstandard1.0/System.Private.Uri.dll" + ] + }, + "runtime.unix.System.Runtime.Extensions/4.1.0": { + "sha512": "ouVt2t9k22LcC9HeNX4mu3Ebvp1h+IPKaYiU3tDtOW9YcMR62XQyHsPq5BjBjMHuxjBRL5Hz+BwhSdrY6HjacA==", + "type": "package", + "path": "runtime.unix.system.runtime.extensions/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.runtime.extensions.4.1.0.nupkg.sha512", + "runtime.unix.system.runtime.extensions.nuspec", + "runtimes/unix/lib/netstandard1.5/System.Runtime.Extensions.dll" + ] + }, + "System.AppContext/4.1.0": { + "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==", + "type": "package", + "path": "system.appcontext/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.1.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.0.0": { + "sha512": "msXumHfjjURSkvxUjYuq4N2ghHoRi2VpXcKMA7gK6ujQfU3vGpl+B6ld0ATRg+FZFpRyA6PgEPA+VlIkTeNf2w==", + "type": "package", + "path": "system.buffers/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/.xml", + "lib/netstandard1.1/System.Buffers.dll", + "system.buffers.4.0.0.nupkg.sha512", + "system.buffers.nuspec" + ] + }, + "System.Collections/4.0.11": { + "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==", + "type": "package", + "path": "system.collections/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.0.11.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.12": { + "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==", + "type": "package", + "path": "system.collections.concurrent/4.0.12", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.0.12.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.2.0": { + "sha512": "Cma8cBW6di16ZLibL8LYQ+cLjGzoKxpOTu/faZfDcx94ZjAGq6Nv5RO7+T1YZXqEXTZP9rt1wLVEONVpURtUqw==", + "type": "package", + "path": "system.collections.immutable/1.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.0/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.1.2.0.nupkg.sha512", + "system.collections.immutable.nuspec" + ] + }, + "System.CommandLine/0.1.0-e161117-2": { + "sha512": "HPy545O9J9+lSYzIyHBw86Iyo2scQiwQ1A74xUGAuQS5aNnp0xD4rjl5SsqKQnldyUp3hRcJ4u3CDxusqc5CYQ==", + "type": "package", + "path": "system.commandline/0.1.0-e161117-2", + "files": [ + ".nupkg.metadata", + "lib/net45/System.CommandLine.dll", + "lib/netstandard1.5/System.CommandLine.dll", + "system.commandline.0.1.0-e161117-2.nupkg.sha512", + "system.commandline.nuspec" + ] + }, + "System.ComponentModel/4.0.1": { + "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==", + "type": "package", + "path": "system.componentmodel/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.4.0.1.nupkg.sha512", + "system.componentmodel.nuspec" + ] + }, + "System.ComponentModel.Annotations/4.1.0": { + "sha512": "rhnz80h8NnHJzoi0nbQJLRR2cJznyqG168q1bgoSpe5qpaME2SguXzuEzpY68nFCi2kBgHpbU4bRN2cP3unYRA==", + "type": "package", + "path": "system.componentmodel.annotations/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.4.1.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec" + ] + }, + "System.Console/4.0.0": { + "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==", + "type": "package", + "path": "system.console/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.0.0.nupkg.sha512", + "system.console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.11": { + "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==", + "type": "package", + "path": "system.diagnostics.debug/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.0.11.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/4.0.0": { + "sha512": "YKglnq4BMTJxfcr6nuT08g+yJ0UxdePIHxosiLuljuHIUR6t4KhFsyaHOaOc1Ofqp0PUvJ0EmcgiEz6T7vEx3w==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec" + ] + }, + "System.Diagnostics.FileVersionInfo/4.0.0": { + "sha512": "qjF74OTAU+mRhLaL4YSfiWy3vj6T3AOz8AW37l5zCwfbBfj0k7E94XnEsRaf2TnhE/7QaV6Hvqakoy2LoV8MVg==", + "type": "package", + "path": "system.diagnostics.fileversioninfo/4.0.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.FileVersionInfo.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.FileVersionInfo.dll", + "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.dll", + "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/de/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/es/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/fr/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/it/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/ja/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/ko/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/ru/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.FileVersionInfo.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win/lib/net46/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win/lib/netcore50/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll", + "system.diagnostics.fileversioninfo.4.0.0.nupkg.sha512", + "system.diagnostics.fileversioninfo.nuspec" + ] + }, + "System.Diagnostics.Process/4.1.0": { + "sha512": "mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==", + "type": "package", + "path": "system.diagnostics.process/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.Process.dll", + "lib/net461/System.Diagnostics.Process.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.Process.dll", + "ref/net461/System.Diagnostics.Process.dll", + "ref/netstandard1.3/System.Diagnostics.Process.dll", + "ref/netstandard1.3/System.Diagnostics.Process.xml", + "ref/netstandard1.3/de/System.Diagnostics.Process.xml", + "ref/netstandard1.3/es/System.Diagnostics.Process.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Process.xml", + "ref/netstandard1.3/it/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Process.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Process.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Process.xml", + "ref/netstandard1.4/System.Diagnostics.Process.dll", + "ref/netstandard1.4/System.Diagnostics.Process.xml", + "ref/netstandard1.4/de/System.Diagnostics.Process.xml", + "ref/netstandard1.4/es/System.Diagnostics.Process.xml", + "ref/netstandard1.4/fr/System.Diagnostics.Process.xml", + "ref/netstandard1.4/it/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ja/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ko/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ru/System.Diagnostics.Process.xml", + "ref/netstandard1.4/zh-hans/System.Diagnostics.Process.xml", + "ref/netstandard1.4/zh-hant/System.Diagnostics.Process.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/win/lib/net46/System.Diagnostics.Process.dll", + "runtimes/win/lib/net461/System.Diagnostics.Process.dll", + "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/win7/lib/netcore50/_._", + "system.diagnostics.process.4.1.0.nupkg.sha512", + "system.diagnostics.process.nuspec" + ] + }, + "System.Diagnostics.StackTrace/4.0.1": { + "sha512": "6i2EbRq0lgGfiZ+FDf0gVaw9qeEU+7IS2+wbZJmFVpvVzVOgZEt0ScZtyenuBvs6iDYbGiF51bMAa0oDP/tujQ==", + "type": "package", + "path": "system.diagnostics.stacktrace/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.StackTrace.dll", + "lib/netstandard1.3/System.Diagnostics.StackTrace.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.StackTrace.dll", + "ref/netstandard1.3/System.Diagnostics.StackTrace.dll", + "ref/netstandard1.3/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/de/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/es/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/fr/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/it/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/ja/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/ko/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/ru/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.StackTrace.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll", + "system.diagnostics.stacktrace.4.0.1.nupkg.sha512", + "system.diagnostics.stacktrace.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.1": { + "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==", + "type": "package", + "path": "system.diagnostics.tools/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.0.1.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.1.0": { + "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==", + "type": "package", + "path": "system.diagnostics.tracing/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.1.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.11": { + "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==", + "type": "package", + "path": "system.dynamic.runtime/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.0.11.nupkg.sha512", + "system.dynamic.runtime.nuspec" + ] + }, + "System.Globalization/4.0.11": { + "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==", + "type": "package", + "path": "system.globalization/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.0.11.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.1": { + "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==", + "type": "package", + "path": "system.globalization.calendars/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.0.1.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.0.1": { + "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==", + "type": "package", + "path": "system.globalization.extensions/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.0.1.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IO/4.1.0": { + "sha512": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==", + "type": "package", + "path": "system.io/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.1.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Compression/4.1.0": { + "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==", + "type": "package", + "path": "system.io.compression/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.1.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.0.1": { + "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==", + "type": "package", + "path": "system.io.compression.zipfile/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.0.1.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.0.1": { + "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==", + "type": "package", + "path": "system.io.filesystem/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.0.1.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.1": { + "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==", + "type": "package", + "path": "system.io.filesystem.primitives/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.0.1.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0": { + "sha512": "qM4Wr3La+RYb/03B0mZZjbA7tHsGzDffnuXP8Sl48HW2JwCjn3kfD5qdw0sqyNNowUipcJMi9/q6sMUrOIJ6UQ==", + "type": "package", + "path": "system.io.filesystem.watcher/4.0.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "ref/netstandard1.3/System.IO.FileSystem.Watcher.dll", + "ref/netstandard1.3/System.IO.FileSystem.Watcher.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Watcher.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Watcher.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Watcher.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Watcher.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Watcher.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Watcher.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Watcher.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Watcher.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Watcher.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/linux/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll", + "runtimes/osx/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll", + "runtimes/win/lib/net46/System.IO.FileSystem.Watcher.dll", + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll", + "runtimes/win7/lib/netcore50/_._", + "system.io.filesystem.watcher.4.0.0.nupkg.sha512", + "system.io.filesystem.watcher.nuspec" + ] + }, + "System.IO.MemoryMappedFiles/4.0.0": { + "sha512": "Xqj4xaFAnLVpss9ZSUIvB/VdJAA7GxZDnFGDKJfiGAnZ5VnFROn6eOHWepFpujCYTsh6wlZ3B33bqYkF0QJ7Eg==", + "type": "package", + "path": "system.io.memorymappedfiles/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.MemoryMappedFiles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.MemoryMappedFiles.dll", + "ref/netstandard1.3/System.IO.MemoryMappedFiles.dll", + "ref/netstandard1.3/System.IO.MemoryMappedFiles.xml", + "ref/netstandard1.3/de/System.IO.MemoryMappedFiles.xml", + "ref/netstandard1.3/es/System.IO.MemoryMappedFiles.xml", + "ref/netstandard1.3/fr/System.IO.MemoryMappedFiles.xml", + "ref/netstandard1.3/it/System.IO.MemoryMappedFiles.xml", + "ref/netstandard1.3/ja/System.IO.MemoryMappedFiles.xml", + "ref/netstandard1.3/ko/System.IO.MemoryMappedFiles.xml", + "ref/netstandard1.3/ru/System.IO.MemoryMappedFiles.xml", + "ref/netstandard1.3/zh-hans/System.IO.MemoryMappedFiles.xml", + "ref/netstandard1.3/zh-hant/System.IO.MemoryMappedFiles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll", + "runtimes/win/lib/net46/System.IO.MemoryMappedFiles.dll", + "runtimes/win/lib/netcore50/System.IO.MemoryMappedFiles.dll", + "runtimes/win/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll", + "system.io.memorymappedfiles.4.0.0.nupkg.sha512", + "system.io.memorymappedfiles.nuspec" + ] + }, + "System.IO.UnmanagedMemoryStream/4.0.1": { + "sha512": "wcq0kXcpfJwdl1Y4/ZjDk7Dhx5HdLyRYYWYmD8Nn8skoGYYQd2BQWbXwjWSczip8AL4Z57o2dWWXAl4aABAKiQ==", + "type": "package", + "path": "system.io.unmanagedmemorystream/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.UnmanagedMemoryStream.dll", + "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.UnmanagedMemoryStream.dll", + "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll", + "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.xml", + "ref/netstandard1.3/de/System.IO.UnmanagedMemoryStream.xml", + "ref/netstandard1.3/es/System.IO.UnmanagedMemoryStream.xml", + "ref/netstandard1.3/fr/System.IO.UnmanagedMemoryStream.xml", + "ref/netstandard1.3/it/System.IO.UnmanagedMemoryStream.xml", + "ref/netstandard1.3/ja/System.IO.UnmanagedMemoryStream.xml", + "ref/netstandard1.3/ko/System.IO.UnmanagedMemoryStream.xml", + "ref/netstandard1.3/ru/System.IO.UnmanagedMemoryStream.xml", + "ref/netstandard1.3/zh-hans/System.IO.UnmanagedMemoryStream.xml", + "ref/netstandard1.3/zh-hant/System.IO.UnmanagedMemoryStream.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.unmanagedmemorystream.4.0.1.nupkg.sha512", + "system.io.unmanagedmemorystream.nuspec" + ] + }, + "System.Linq/4.1.0": { + "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==", + "type": "package", + "path": "system.linq/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.1.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.1.0": { + "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==", + "type": "package", + "path": "system.linq.expressions/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.1.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Linq.Parallel/4.0.1": { + "sha512": "J7XCa7n2cFn32uLbtceXfBFhgCk5M++50lylHKNbqTiJkw5y4Tglpi6amuJNPCvj9bLzNSI7rs1fi4joLMNRgg==", + "type": "package", + "path": "system.linq.parallel/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Linq.Parallel.dll", + "lib/netstandard1.3/System.Linq.Parallel.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Linq.Parallel.dll", + "ref/netcore50/System.Linq.Parallel.xml", + "ref/netcore50/de/System.Linq.Parallel.xml", + "ref/netcore50/es/System.Linq.Parallel.xml", + "ref/netcore50/fr/System.Linq.Parallel.xml", + "ref/netcore50/it/System.Linq.Parallel.xml", + "ref/netcore50/ja/System.Linq.Parallel.xml", + "ref/netcore50/ko/System.Linq.Parallel.xml", + "ref/netcore50/ru/System.Linq.Parallel.xml", + "ref/netcore50/zh-hans/System.Linq.Parallel.xml", + "ref/netcore50/zh-hant/System.Linq.Parallel.xml", + "ref/netstandard1.1/System.Linq.Parallel.dll", + "ref/netstandard1.1/System.Linq.Parallel.xml", + "ref/netstandard1.1/de/System.Linq.Parallel.xml", + "ref/netstandard1.1/es/System.Linq.Parallel.xml", + "ref/netstandard1.1/fr/System.Linq.Parallel.xml", + "ref/netstandard1.1/it/System.Linq.Parallel.xml", + "ref/netstandard1.1/ja/System.Linq.Parallel.xml", + "ref/netstandard1.1/ko/System.Linq.Parallel.xml", + "ref/netstandard1.1/ru/System.Linq.Parallel.xml", + "ref/netstandard1.1/zh-hans/System.Linq.Parallel.xml", + "ref/netstandard1.1/zh-hant/System.Linq.Parallel.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.parallel.4.0.1.nupkg.sha512", + "system.linq.parallel.nuspec" + ] + }, + "System.Linq.Queryable/4.0.1": { + "sha512": "Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==", + "type": "package", + "path": "system.linq.queryable/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Linq.Queryable.dll", + "lib/netstandard1.3/System.Linq.Queryable.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Linq.Queryable.dll", + "ref/netcore50/System.Linq.Queryable.xml", + "ref/netcore50/de/System.Linq.Queryable.xml", + "ref/netcore50/es/System.Linq.Queryable.xml", + "ref/netcore50/fr/System.Linq.Queryable.xml", + "ref/netcore50/it/System.Linq.Queryable.xml", + "ref/netcore50/ja/System.Linq.Queryable.xml", + "ref/netcore50/ko/System.Linq.Queryable.xml", + "ref/netcore50/ru/System.Linq.Queryable.xml", + "ref/netcore50/zh-hans/System.Linq.Queryable.xml", + "ref/netcore50/zh-hant/System.Linq.Queryable.xml", + "ref/netstandard1.0/System.Linq.Queryable.dll", + "ref/netstandard1.0/System.Linq.Queryable.xml", + "ref/netstandard1.0/de/System.Linq.Queryable.xml", + "ref/netstandard1.0/es/System.Linq.Queryable.xml", + "ref/netstandard1.0/fr/System.Linq.Queryable.xml", + "ref/netstandard1.0/it/System.Linq.Queryable.xml", + "ref/netstandard1.0/ja/System.Linq.Queryable.xml", + "ref/netstandard1.0/ko/System.Linq.Queryable.xml", + "ref/netstandard1.0/ru/System.Linq.Queryable.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.queryable.4.0.1.nupkg.sha512", + "system.linq.queryable.nuspec" + ] + }, + "System.Net.Http/4.1.0": { + "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==", + "type": "package", + "path": "system.net.http/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.1.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.NameResolution/4.0.0": { + "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==", + "type": "package", + "path": "system.net.nameresolution/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.NameResolution.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.xml", + "ref/netstandard1.3/de/System.Net.NameResolution.xml", + "ref/netstandard1.3/es/System.Net.NameResolution.xml", + "ref/netstandard1.3/fr/System.Net.NameResolution.xml", + "ref/netstandard1.3/it/System.Net.NameResolution.xml", + "ref/netstandard1.3/ja/System.Net.NameResolution.xml", + "ref/netstandard1.3/ko/System.Net.NameResolution.xml", + "ref/netstandard1.3/ru/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", + "runtimes/win/lib/net46/System.Net.NameResolution.dll", + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll", + "system.net.nameresolution.4.0.0.nupkg.sha512", + "system.net.nameresolution.nuspec" + ] + }, + "System.Net.Primitives/4.0.11": { + "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==", + "type": "package", + "path": "system.net.primitives/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.0.11.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Requests/4.0.11": { + "sha512": "vxGt7C0cZixN+VqoSW4Yakc1Y9WknmxauDqzxgpw/FnBdz4kQNN51l4wxdXX5VY1xjqy//+G+4CvJWp1+f+y6Q==", + "type": "package", + "path": "system.net.requests/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/_._", + "ref/netcore50/System.Net.Requests.dll", + "ref/netcore50/System.Net.Requests.xml", + "ref/netcore50/de/System.Net.Requests.xml", + "ref/netcore50/es/System.Net.Requests.xml", + "ref/netcore50/fr/System.Net.Requests.xml", + "ref/netcore50/it/System.Net.Requests.xml", + "ref/netcore50/ja/System.Net.Requests.xml", + "ref/netcore50/ko/System.Net.Requests.xml", + "ref/netcore50/ru/System.Net.Requests.xml", + "ref/netcore50/zh-hans/System.Net.Requests.xml", + "ref/netcore50/zh-hant/System.Net.Requests.xml", + "ref/netstandard1.0/System.Net.Requests.dll", + "ref/netstandard1.0/System.Net.Requests.xml", + "ref/netstandard1.0/de/System.Net.Requests.xml", + "ref/netstandard1.0/es/System.Net.Requests.xml", + "ref/netstandard1.0/fr/System.Net.Requests.xml", + "ref/netstandard1.0/it/System.Net.Requests.xml", + "ref/netstandard1.0/ja/System.Net.Requests.xml", + "ref/netstandard1.0/ko/System.Net.Requests.xml", + "ref/netstandard1.0/ru/System.Net.Requests.xml", + "ref/netstandard1.0/zh-hans/System.Net.Requests.xml", + "ref/netstandard1.0/zh-hant/System.Net.Requests.xml", + "ref/netstandard1.1/System.Net.Requests.dll", + "ref/netstandard1.1/System.Net.Requests.xml", + "ref/netstandard1.1/de/System.Net.Requests.xml", + "ref/netstandard1.1/es/System.Net.Requests.xml", + "ref/netstandard1.1/fr/System.Net.Requests.xml", + "ref/netstandard1.1/it/System.Net.Requests.xml", + "ref/netstandard1.1/ja/System.Net.Requests.xml", + "ref/netstandard1.1/ko/System.Net.Requests.xml", + "ref/netstandard1.1/ru/System.Net.Requests.xml", + "ref/netstandard1.1/zh-hans/System.Net.Requests.xml", + "ref/netstandard1.1/zh-hant/System.Net.Requests.xml", + "ref/netstandard1.3/System.Net.Requests.dll", + "ref/netstandard1.3/System.Net.Requests.xml", + "ref/netstandard1.3/de/System.Net.Requests.xml", + "ref/netstandard1.3/es/System.Net.Requests.xml", + "ref/netstandard1.3/fr/System.Net.Requests.xml", + "ref/netstandard1.3/it/System.Net.Requests.xml", + "ref/netstandard1.3/ja/System.Net.Requests.xml", + "ref/netstandard1.3/ko/System.Net.Requests.xml", + "ref/netstandard1.3/ru/System.Net.Requests.xml", + "ref/netstandard1.3/zh-hans/System.Net.Requests.xml", + "ref/netstandard1.3/zh-hant/System.Net.Requests.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll", + "runtimes/win/lib/net46/_._", + "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll", + "system.net.requests.4.0.11.nupkg.sha512", + "system.net.requests.nuspec" + ] + }, + "System.Net.Security/4.0.0": { + "sha512": "uM1JaYJciCc2w7efD6du0EpQ1n5ZQqE6/P43/aI4H5E59qvP+wt3l70KIUF/Ha7NaeXGoGNFPVO0MB80pVHk2g==", + "type": "package", + "path": "system.net.security/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Security.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Security.dll", + "ref/netstandard1.3/System.Net.Security.dll", + "ref/netstandard1.3/System.Net.Security.xml", + "ref/netstandard1.3/de/System.Net.Security.xml", + "ref/netstandard1.3/es/System.Net.Security.xml", + "ref/netstandard1.3/fr/System.Net.Security.xml", + "ref/netstandard1.3/it/System.Net.Security.xml", + "ref/netstandard1.3/ja/System.Net.Security.xml", + "ref/netstandard1.3/ko/System.Net.Security.xml", + "ref/netstandard1.3/ru/System.Net.Security.xml", + "ref/netstandard1.3/zh-hans/System.Net.Security.xml", + "ref/netstandard1.3/zh-hant/System.Net.Security.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll", + "runtimes/win/lib/net46/System.Net.Security.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Security.dll", + "runtimes/win7/lib/netcore50/_._", + "system.net.security.4.0.0.nupkg.sha512", + "system.net.security.nuspec" + ] + }, + "System.Net.Sockets/4.1.0": { + "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==", + "type": "package", + "path": "system.net.sockets/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.1.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.Net.WebHeaderCollection/4.0.1": { + "sha512": "XX2TIAN+wBSAIV51BU2FvvXMdstUa8b0FBSZmDWjZdwUMmggQSifpTOZ5fNH20z9ZCg2fkV1L5SsZnpO2RQDRQ==", + "type": "package", + "path": "system.net.webheadercollection/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netstandard1.3/System.Net.WebHeaderCollection.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Net.WebHeaderCollection.dll", + "ref/netstandard1.3/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/de/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/es/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/fr/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/it/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/ja/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/ko/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/ru/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/zh-hans/System.Net.WebHeaderCollection.xml", + "ref/netstandard1.3/zh-hant/System.Net.WebHeaderCollection.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.webheadercollection.4.0.1.nupkg.sha512", + "system.net.webheadercollection.nuspec" + ] + }, + "System.Numerics.Vectors/4.1.1": { + "sha512": "Ex1NSKycC2wi5XBMWUGWPc3lumh6OQWFFmmpZFZz0oLht5lQ+wWPHVZumOrMJuckfUiVMd4p67BrkBos8lcF+Q==", + "type": "package", + "path": "system.numerics.vectors/4.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Numerics.Vectors.dll", + "ref/net46/System.Numerics.Vectors.xml", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.numerics.vectors.4.1.1.nupkg.sha512", + "system.numerics.vectors.nuspec" + ] + }, + "System.ObjectModel/4.0.12": { + "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==", + "type": "package", + "path": "system.objectmodel/4.0.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.0.12.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Private.Uri/4.0.1": { + "sha512": "OltceAn9yyNf9LZIqvf80DhdRH55iVu1fxowdR79018w1CWIRNojUZBStsiRHvADeKI5pXcM9EftOFikBQh5AA==", + "type": "package", + "path": "system.private.uri/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "system.private.uri.4.0.1.nupkg.sha512", + "system.private.uri.nuspec" + ] + }, + "System.Reflection/4.1.0": { + "sha512": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==", + "type": "package", + "path": "system.reflection/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.1.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.DispatchProxy/4.0.1": { + "sha512": "GPPgWoSxQEU3aCKSOvsAc1dhTTi4iq92PUVEVfnGPGwqCf6synaAJGYLKMs5E3CuRfel8ufACWUijXqDpOlGrA==", + "type": "package", + "path": "system.reflection.dispatchproxy/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netstandard1.3/System.Reflection.DispatchProxy.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.3/System.Reflection.DispatchProxy.dll", + "ref/netstandard1.3/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll", + "system.reflection.dispatchproxy.4.0.1.nupkg.sha512", + "system.reflection.dispatchproxy.nuspec" + ] + }, + "System.Reflection.Emit/4.0.1": { + "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==", + "type": "package", + "path": "system.reflection.emit/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinmac20/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.0.1.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.0.1.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.1": { + "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==", + "type": "package", + "path": "system.reflection.extensions/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.0.1.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.3.0": { + "sha512": "jMSCxA4LSyKBGRDm/WtfkO03FkcgRzHxwvQRib1bm2GZ8ifKM1MX1al6breGCEQK280mdl9uQS7JNPXRYk90jw==", + "type": "package", + "path": "system.reflection.metadata/1.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.1.3.0.nupkg.sha512", + "system.reflection.metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.1": { + "sha512": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==", + "type": "package", + "path": "system.reflection.primitives/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.0.1.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.1.0": { + "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==", + "type": "package", + "path": "system.reflection.typeextensions/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.1.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.Reader/4.0.0": { + "sha512": "VX1iHAoHxgrLZv+nq/9drCZI6Q4SSCzSVyUm1e0U60sqWdj6XhY7wvKmy3RvsSal9h+/vqSWwxxJsm0J4vn/jA==", + "type": "package", + "path": "system.resources.reader/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Resources.Reader.dll", + "system.resources.reader.4.0.0.nupkg.sha512", + "system.resources.reader.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.1": { + "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==", + "type": "package", + "path": "system.resources.resourcemanager/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.0.1.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.1.0": { + "sha512": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==", + "type": "package", + "path": "system.runtime/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.1.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.1.0": { + "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==", + "type": "package", + "path": "system.runtime.extensions/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.1.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.1": { + "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==", + "type": "package", + "path": "system.runtime.handles/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.0.1.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.1.0": { + "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==", + "type": "package", + "path": "system.runtime.interopservices/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.1.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { + "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0": { + "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==", + "type": "package", + "path": "system.runtime.loader/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net462/_._", + "lib/netstandard1.5/System.Runtime.Loader.dll", + "ref/netstandard1.5/System.Runtime.Loader.dll", + "ref/netstandard1.5/System.Runtime.Loader.xml", + "ref/netstandard1.5/de/System.Runtime.Loader.xml", + "ref/netstandard1.5/es/System.Runtime.Loader.xml", + "ref/netstandard1.5/fr/System.Runtime.Loader.xml", + "ref/netstandard1.5/it/System.Runtime.Loader.xml", + "ref/netstandard1.5/ja/System.Runtime.Loader.xml", + "ref/netstandard1.5/ko/System.Runtime.Loader.xml", + "ref/netstandard1.5/ru/System.Runtime.Loader.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml", + "system.runtime.loader.4.0.0.nupkg.sha512", + "system.runtime.loader.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.1": { + "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==", + "type": "package", + "path": "system.runtime.numerics/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.0.1.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.1.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Primitives.dll", + "lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "system.runtime.serialization.primitives.4.1.1.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec" + ] + }, + "System.Security.Claims/4.0.1": { + "sha512": "4Jlp0OgJLS/Voj1kyFP6MJlIYp3crgfH8kNQk2p7+4JYfc1aAmh9PZyAMMbDhuoolGNtux9HqSOazsioRiDvCw==", + "type": "package", + "path": "system.security.claims/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/netstandard1.3/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.xml", + "ref/netstandard1.3/de/System.Security.Claims.xml", + "ref/netstandard1.3/es/System.Security.Claims.xml", + "ref/netstandard1.3/fr/System.Security.Claims.xml", + "ref/netstandard1.3/it/System.Security.Claims.xml", + "ref/netstandard1.3/ja/System.Security.Claims.xml", + "ref/netstandard1.3/ko/System.Security.Claims.xml", + "ref/netstandard1.3/ru/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hans/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hant/System.Security.Claims.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.claims.4.0.1.nupkg.sha512", + "system.security.claims.nuspec" + ] + }, + "System.Security.Cryptography.Algorithms/4.2.0": { + "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.2.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.2.0": { + "sha512": "cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==", + "type": "package", + "path": "system.security.cryptography.cng/4.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net463/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net463/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "system.security.cryptography.cng.4.2.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.0.0": { + "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==", + "type": "package", + "path": "system.security.cryptography.csp/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.0.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0": { + "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==", + "type": "package", + "path": "system.security.cryptography.encoding/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.0.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.0.0": { + "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==", + "type": "package", + "path": "system.security.cryptography.openssl/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.0.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.0.0": { + "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==", + "type": "package", + "path": "system.security.cryptography.primitives/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.0.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.1.0": { + "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.1": { + "sha512": "On+SKhXY5rzxh/S8wlH1Rm0ogBlu7zyHNxeNBiXauNrhHRXAe9EuX8Yl5IOzLPGU5Z4kLWHMvORDOCG8iu9hww==", + "type": "package", + "path": "system.security.principal/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/netstandard1.0/System.Security.Principal.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/netcore50/de/System.Security.Principal.xml", + "ref/netcore50/es/System.Security.Principal.xml", + "ref/netcore50/fr/System.Security.Principal.xml", + "ref/netcore50/it/System.Security.Principal.xml", + "ref/netcore50/ja/System.Security.Principal.xml", + "ref/netcore50/ko/System.Security.Principal.xml", + "ref/netcore50/ru/System.Security.Principal.xml", + "ref/netcore50/zh-hans/System.Security.Principal.xml", + "ref/netcore50/zh-hant/System.Security.Principal.xml", + "ref/netstandard1.0/System.Security.Principal.dll", + "ref/netstandard1.0/System.Security.Principal.xml", + "ref/netstandard1.0/de/System.Security.Principal.xml", + "ref/netstandard1.0/es/System.Security.Principal.xml", + "ref/netstandard1.0/fr/System.Security.Principal.xml", + "ref/netstandard1.0/it/System.Security.Principal.xml", + "ref/netstandard1.0/ja/System.Security.Principal.xml", + "ref/netstandard1.0/ko/System.Security.Principal.xml", + "ref/netstandard1.0/ru/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hans/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hant/System.Security.Principal.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.principal.4.0.1.nupkg.sha512", + "system.security.principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.0.0": { + "sha512": "iFx15AF3RMEPZn3COh8+Bb2Thv2zsmLd93RchS1b8Mj5SNYeGqbYNCSn5AES1+gq56p4ujGZPrl0xN7ngkXOHg==", + "type": "package", + "path": "system.security.principal.windows/4.0.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "system.security.principal.windows.4.0.0.nupkg.sha512", + "system.security.principal.windows.nuspec" + ] + }, + "System.Text.Encoding/4.0.11": { + "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==", + "type": "package", + "path": "system.text.encoding/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.0.11.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/4.0.1": { + "sha512": "h4z6rrA/hxWf4655D18IIZ0eaLRa3tQC/j+e26W+VinIHY0l07iEXaAvO0YSYq3MvCjMYy8Zs5AdC1sxNQOB7Q==", + "type": "package", + "path": "system.text.encoding.codepages/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.3/System.Text.Encoding.CodePages.dll", + "ref/netstandard1.3/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "system.text.encoding.codepages.4.0.1.nupkg.sha512", + "system.text.encoding.codepages.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.11": { + "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==", + "type": "package", + "path": "system.text.encoding.extensions/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.0.11.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.1.0": { + "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==", + "type": "package", + "path": "system.text.regularexpressions/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.1.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.0.11": { + "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==", + "type": "package", + "path": "system.threading/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.0.11.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.1": { + "sha512": "f7aLuLkBoCQM2kng7zqLFBXz9Gk48gDK8lk1ih9rH/1arJJzZK9gJwNvPDhL6Ps/l6rwOr8jw+4FCHL0KKWiEg==", + "type": "package", + "path": "system.threading.overlapped/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "ref/netstandard1.3/System.Threading.Overlapped.dll", + "ref/netstandard1.3/System.Threading.Overlapped.xml", + "ref/netstandard1.3/de/System.Threading.Overlapped.xml", + "ref/netstandard1.3/es/System.Threading.Overlapped.xml", + "ref/netstandard1.3/fr/System.Threading.Overlapped.xml", + "ref/netstandard1.3/it/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ja/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ko/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ru/System.Threading.Overlapped.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml", + "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll", + "runtimes/win/lib/net46/System.Threading.Overlapped.dll", + "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll", + "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll", + "system.threading.overlapped.4.0.1.nupkg.sha512", + "system.threading.overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.11": { + "sha512": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==", + "type": "package", + "path": "system.threading.tasks/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.0.11.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Dataflow/4.6.0": { + "sha512": "2hRjGu2r2jxRZ55wmcHO/WbdX+YAOz9x6FE8xqkHZgPaoFMKQZRe9dk8xTZIas8fRjxRmzawnTEWIrhlM+Un7w==", + "type": "package", + "path": "system.threading.tasks.dataflow/4.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Dataflow.XML", + "lib/netstandard1.0/System.Threading.Tasks.Dataflow.dll", + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.XML", + "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll", + "system.threading.tasks.dataflow.4.6.0.nupkg.sha512", + "system.threading.tasks.dataflow.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.0.0": { + "sha512": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==", + "type": "package", + "path": "system.threading.tasks.extensions/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "system.threading.tasks.extensions.4.0.0.nupkg.sha512", + "system.threading.tasks.extensions.nuspec" + ] + }, + "System.Threading.Tasks.Parallel/4.0.1": { + "sha512": "7Pc9t25bcynT9FpMvkUw4ZjYwUiGup/5cJFW72/5MgCG+np2cfVUMdh29u8d7onxX7d8PS3J+wL73zQRqkdrSA==", + "type": "package", + "path": "system.threading.tasks.parallel/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.Parallel.dll", + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.Parallel.dll", + "ref/netcore50/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/de/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/es/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/it/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll", + "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.parallel.4.0.1.nupkg.sha512", + "system.threading.tasks.parallel.nuspec" + ] + }, + "System.Threading.Thread/4.0.0": { + "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==", + "type": "package", + "path": "system.threading.thread/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.Thread.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.Thread.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.Thread.dll", + "ref/netstandard1.3/System.Threading.Thread.dll", + "ref/netstandard1.3/System.Threading.Thread.xml", + "ref/netstandard1.3/de/System.Threading.Thread.xml", + "ref/netstandard1.3/es/System.Threading.Thread.xml", + "ref/netstandard1.3/fr/System.Threading.Thread.xml", + "ref/netstandard1.3/it/System.Threading.Thread.xml", + "ref/netstandard1.3/ja/System.Threading.Thread.xml", + "ref/netstandard1.3/ko/System.Threading.Thread.xml", + "ref/netstandard1.3/ru/System.Threading.Thread.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.thread.4.0.0.nupkg.sha512", + "system.threading.thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10": { + "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==", + "type": "package", + "path": "system.threading.threadpool/4.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.ThreadPool.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.ThreadPool.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/de/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/es/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/it/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.threadpool.4.0.10.nupkg.sha512", + "system.threading.threadpool.nuspec" + ] + }, + "System.Threading.Timer/4.0.1": { + "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==", + "type": "package", + "path": "system.threading.timer/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.0.1.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.11": { + "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==", + "type": "package", + "path": "system.xml.readerwriter/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.0.11.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.11": { + "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==", + "type": "package", + "path": "system.xml.xdocument/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.0.11.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.0.1": { + "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==", + "type": "package", + "path": "system.xml.xmldocument/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.0.1.nupkg.sha512", + "system.xml.xmldocument.nuspec" + ] + }, + "System.Xml.XPath/4.0.1": { + "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==", + "type": "package", + "path": "system.xml.xpath/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XPath.dll", + "lib/netstandard1.3/System.Xml.XPath.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XPath.dll", + "ref/netstandard1.3/System.Xml.XPath.dll", + "ref/netstandard1.3/System.Xml.XPath.xml", + "ref/netstandard1.3/de/System.Xml.XPath.xml", + "ref/netstandard1.3/es/System.Xml.XPath.xml", + "ref/netstandard1.3/fr/System.Xml.XPath.xml", + "ref/netstandard1.3/it/System.Xml.XPath.xml", + "ref/netstandard1.3/ja/System.Xml.XPath.xml", + "ref/netstandard1.3/ko/System.Xml.XPath.xml", + "ref/netstandard1.3/ru/System.Xml.XPath.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xpath.4.0.1.nupkg.sha512", + "system.xml.xpath.nuspec" + ] + }, + "System.Xml.XPath.XDocument/4.0.1": { + "sha512": "FLhdYJx4331oGovQypQ8JIw2kEmNzCsjVOVYY/16kZTUoquZG85oVn7yUhBE2OZt1yGPSXAL0HTEfzjlbNpM7Q==", + "type": "package", + "path": "system.xml.xpath.xdocument/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XPath.XDocument.dll", + "lib/netstandard1.3/System.Xml.XPath.XDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XPath.XDocument.dll", + "ref/netstandard1.3/System.Xml.XPath.XDocument.dll", + "ref/netstandard1.3/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XPath.XDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xpath.xdocument.4.0.1.nupkg.sha512", + "system.xml.xpath.xdocument.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v3.1": [ + "Microsoft.DotNet.CoreCLR.TestDependencies >= 1.0.0-prerelease", + "Microsoft.NETCore.Platforms >= 3.1.0-preview3.19551.4", + "cijobs >= 0.0.1.2", + "jit-analyze >= 0.0.1.1", + "jit-dasm >= 0.0.1.4" + ] + }, + "packageFolders": { + "/home/z/Dev/coreclr-sec/.packages": {} + }, + "project": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/Common/test_runtime/test_runtime.csproj", + "projectName": "test_runtime", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/Common/test_runtime/test_runtime.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/Common/test_runtime/obj-linux-x86", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netcoreapp3.1": { + "dependencies": { + "Microsoft.DotNet.CoreCLR.TestDependencies": { + "target": "Package", + "version": "[1.0.0-prerelease, )" + }, + "Microsoft.NETCore.Platforms": { + "target": "Package", + "version": "[3.1.0-preview3.19551.4, )" + }, + "cijobs": { + "target": "Package", + "version": "[0.0.1.2, )" + }, + "jit-analyze": { + "target": "Package", + "version": "[0.0.1.1, )" + }, + "jit-dasm": { + "target": "Package", + "version": "[0.0.1.4, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x86": { + "#import": [] + } + } + }, + "logs": [ + { + "code": "NU1603", + "level": "Warning", + "warningLevel": 1, + "message": "cijobs 0.0.1.2 depends on Microsoft.DotNet.Cli.Utils (>= 1.0.0-dev-1457) but Microsoft.DotNet.Cli.Utils 1.0.0-dev-1457 was not found. An approximate best match of Microsoft.DotNet.Cli.Utils 1.0.0-preview1-002702 was resolved.", + "libraryId": "Microsoft.DotNet.Cli.Utils", + "targetGraphs": [ + ".NETCoreApp,Version=v3.1", + ".NETCoreApp,Version=v3.1/linux-x86" + ] + } + ] +}
\ No newline at end of file diff --git a/tests/src/Common/test_runtime/obj-linux-x86/test_runtime.csproj.nuget.cache b/tests/src/Common/test_runtime/obj-linux-x86/test_runtime.csproj.nuget.cache new file mode 100644 index 0000000000..c2044d39d1 --- /dev/null +++ b/tests/src/Common/test_runtime/obj-linux-x86/test_runtime.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "XDpNBigA5UaHG4cwTAw1QVvYY8ajueSPZQ8uIkPG+Exe1h/S4n41AJX4w7+hugkiq4kdNAuOwz2kmpNGLm/FrA==", + "success": true +}
\ No newline at end of file diff --git a/tests/src/Common/test_runtime/obj-linux-x86/test_runtime.csproj.nuget.dgspec.json b/tests/src/Common/test_runtime/obj-linux-x86/test_runtime.csproj.nuget.dgspec.json new file mode 100644 index 0000000000..d05891c37f --- /dev/null +++ b/tests/src/Common/test_runtime/obj-linux-x86/test_runtime.csproj.nuget.dgspec.json @@ -0,0 +1,73 @@ +{ + "format": 1, + "restore": { + "/home/z/Dev/coreclr-sec/tests/src/Common/test_runtime/test_runtime.csproj": {} + }, + "projects": { + "/home/z/Dev/coreclr-sec/tests/src/Common/test_runtime/test_runtime.csproj": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/Common/test_runtime/test_runtime.csproj", + "projectName": "test_runtime", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/Common/test_runtime/test_runtime.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/Common/test_runtime/obj-linux-x86", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netcoreapp3.1": { + "dependencies": { + "Microsoft.DotNet.CoreCLR.TestDependencies": { + "target": "Package", + "version": "[1.0.0-prerelease, )" + }, + "Microsoft.NETCore.Platforms": { + "target": "Package", + "version": "[3.1.0-preview3.19551.4, )" + }, + "cijobs": { + "target": "Package", + "version": "[0.0.1.2, )" + }, + "jit-analyze": { + "target": "Package", + "version": "[0.0.1.1, )" + }, + "jit-dasm": { + "target": "Package", + "version": "[0.0.1.4, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x86": { + "#import": [] + } + } + } + } +}
\ No newline at end of file diff --git a/tests/src/Common/test_runtime/obj-linux-x86/test_runtime.csproj.nuget.g.props b/tests/src/Common/test_runtime/obj-linux-x86/test_runtime.csproj.nuget.g.props new file mode 100644 index 0000000000..23f648c18f --- /dev/null +++ b/tests/src/Common/test_runtime/obj-linux-x86/test_runtime.csproj.nuget.g.props @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> + <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> + <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> + <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageRoot> + <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageFolders> + <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.4.0</NuGetToolVersion> + </PropertyGroup> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <PkgNewtonsoft_Json Condition=" '$(PkgNewtonsoft_Json)' == '' ">/home/z/Dev/coreclr-sec/.packages/newtonsoft.json/9.0.1</PkgNewtonsoft_Json> + <PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">/home/z/Dev/coreclr-sec/.packages/microsoft.codeanalysis.analyzers/1.1.0</PkgMicrosoft_CodeAnalysis_Analyzers> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/Common/test_runtime/obj-linux-x86/test_runtime.csproj.nuget.g.targets b/tests/src/Common/test_runtime/obj-linux-x86/test_runtime.csproj.nuget.g.targets new file mode 100644 index 0000000000..53cfaa19b1 --- /dev/null +++ b/tests/src/Common/test_runtime/obj-linux-x86/test_runtime.csproj.nuget.g.targets @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x64/benchmark+intrinsic.csproj.nuget.cache b/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x64/benchmark+intrinsic.csproj.nuget.cache new file mode 100644 index 0000000000..b504f4ec79 --- /dev/null +++ b/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x64/benchmark+intrinsic.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "GxECHr6eHXw3vtzKm+BFnGYTenRZjT59tVKqVuDMdsOCCVmyPCk/bT1FlRb1AaWWYstfOqzGNaEC/NcTgTkOOg==", + "success": true +}
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x64/benchmark+intrinsic.csproj.nuget.dgspec.json b/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x64/benchmark+intrinsic.csproj.nuget.dgspec.json new file mode 100644 index 0000000000..ececa1bd65 --- /dev/null +++ b/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x64/benchmark+intrinsic.csproj.nuget.dgspec.json @@ -0,0 +1,62 @@ +{ + "format": 1, + "restore": { + "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+intrinsic/benchmark+intrinsic.csproj": {} + }, + "projects": { + "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+intrinsic/benchmark+intrinsic.csproj": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+intrinsic/benchmark+intrinsic.csproj", + "projectName": "benchmark+intrinsic", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+intrinsic/benchmark+intrinsic.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x64", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netcoreapp3.1": { + "dependencies": { + "Microsoft.Private.CoreFx.NETCoreApp": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Runtime.CompilerServices.Unsafe": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + } + }, + "imports": [ + "dnxcore50", + "netcoreapp1.1", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x64": { + "#import": [] + } + } + } + } +}
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x64/benchmark+intrinsic.csproj.nuget.g.props b/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x64/benchmark+intrinsic.csproj.nuget.g.props new file mode 100644 index 0000000000..a9eafdb0ac --- /dev/null +++ b/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x64/benchmark+intrinsic.csproj.nuget.g.props @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> + <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> + <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> + <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageRoot> + <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageFolders> + <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.4.0</NuGetToolVersion> + </PropertyGroup> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x64/benchmark+intrinsic.csproj.nuget.g.targets b/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x64/benchmark+intrinsic.csproj.nuget.g.targets new file mode 100644 index 0000000000..53cfaa19b1 --- /dev/null +++ b/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x64/benchmark+intrinsic.csproj.nuget.g.targets @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x64/project.assets.json b/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x64/project.assets.json new file mode 100644 index 0000000000..8b4c5bfac3 --- /dev/null +++ b/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x64/project.assets.json @@ -0,0 +1,1409 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v3.1": { + "Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netcoreapp3.1/Microsoft.CSharp.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.dll": {}, + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.dll": {}, + "ref/netcoreapp3.1/System.AppContext.dll": {}, + "ref/netcoreapp3.1/System.Buffers.dll": {}, + "ref/netcoreapp3.1/System.Collections.Concurrent.dll": {}, + "ref/netcoreapp3.1/System.Collections.Immutable.dll": {}, + "ref/netcoreapp3.1/System.Collections.NonGeneric.dll": {}, + "ref/netcoreapp3.1/System.Collections.Specialized.dll": {}, + "ref/netcoreapp3.1/System.Collections.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Annotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Primitives.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.dll": {}, + "ref/netcoreapp3.1/System.Configuration.dll": {}, + "ref/netcoreapp3.1/System.Console.dll": {}, + "ref/netcoreapp3.1/System.Core.dll": {}, + "ref/netcoreapp3.1/System.Data.Common.dll": {}, + "ref/netcoreapp3.1/System.Data.DataSetExtensions.dll": {}, + "ref/netcoreapp3.1/System.Data.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Contracts.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Debug.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Process.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tools.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tracing.dll": {}, + "ref/netcoreapp3.1/System.Drawing.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Drawing.dll": {}, + "ref/netcoreapp3.1/System.Dynamic.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Calendars.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Globalization.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.Brotli.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Primitives.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.IsolatedStorage.dll": {}, + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.dll": {}, + "ref/netcoreapp3.1/System.IO.Pipes.dll": {}, + "ref/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/netcoreapp3.1/System.IO.dll": {}, + "ref/netcoreapp3.1/System.Linq.Expressions.dll": {}, + "ref/netcoreapp3.1/System.Linq.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Linq.Queryable.dll": {}, + "ref/netcoreapp3.1/System.Linq.dll": {}, + "ref/netcoreapp3.1/System.Memory.dll": {}, + "ref/netcoreapp3.1/System.Net.Http.dll": {}, + "ref/netcoreapp3.1/System.Net.HttpListener.dll": {}, + "ref/netcoreapp3.1/System.Net.Mail.dll": {}, + "ref/netcoreapp3.1/System.Net.NameResolution.dll": {}, + "ref/netcoreapp3.1/System.Net.NetworkInformation.dll": {}, + "ref/netcoreapp3.1/System.Net.Ping.dll": {}, + "ref/netcoreapp3.1/System.Net.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Net.Requests.dll": {}, + "ref/netcoreapp3.1/System.Net.Security.dll": {}, + "ref/netcoreapp3.1/System.Net.ServicePoint.dll": {}, + "ref/netcoreapp3.1/System.Net.Sockets.dll": {}, + "ref/netcoreapp3.1/System.Net.WebClient.dll": {}, + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.dll": {}, + "ref/netcoreapp3.1/System.Net.WebProxy.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.Client.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.dll": {}, + "ref/netcoreapp3.1/System.Net.dll": {}, + "ref/netcoreapp3.1/System.Numerics.Vectors.dll": {}, + "ref/netcoreapp3.1/System.Numerics.dll": {}, + "ref/netcoreapp3.1/System.ObjectModel.dll": {}, + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Metadata.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.dll": {}, + "ref/netcoreapp3.1/System.Resources.Reader.dll": {}, + "ref/netcoreapp3.1/System.Resources.ResourceManager.dll": {}, + "ref/netcoreapp3.1/System.Resources.Writer.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Handles.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Intrinsics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Loader.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Numerics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Security.Claims.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/netcoreapp3.1/System.Security.Principal.dll": {}, + "ref/netcoreapp3.1/System.Security.SecureString.dll": {}, + "ref/netcoreapp3.1/System.Security.dll": {}, + "ref/netcoreapp3.1/System.ServiceModel.Web.dll": {}, + "ref/netcoreapp3.1/System.ServiceProcess.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Text.Encodings.Web.dll": {}, + "ref/netcoreapp3.1/System.Text.Json.dll": {}, + "ref/netcoreapp3.1/System.Text.RegularExpressions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Channels.dll": {}, + "ref/netcoreapp3.1/System.Threading.Overlapped.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.dll": {}, + "ref/netcoreapp3.1/System.Threading.Thread.dll": {}, + "ref/netcoreapp3.1/System.Threading.ThreadPool.dll": {}, + "ref/netcoreapp3.1/System.Threading.Timer.dll": {}, + "ref/netcoreapp3.1/System.Threading.dll": {}, + "ref/netcoreapp3.1/System.Transactions.Local.dll": {}, + "ref/netcoreapp3.1/System.Transactions.dll": {}, + "ref/netcoreapp3.1/System.ValueTuple.dll": {}, + "ref/netcoreapp3.1/System.Web.HttpUtility.dll": {}, + "ref/netcoreapp3.1/System.Web.dll": {}, + "ref/netcoreapp3.1/System.Windows.dll": {}, + "ref/netcoreapp3.1/System.Xml.Linq.dll": {}, + "ref/netcoreapp3.1/System.Xml.ReaderWriter.dll": {}, + "ref/netcoreapp3.1/System.Xml.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Xml.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlSerializer.dll": {}, + "ref/netcoreapp3.1/System.Xml.dll": {}, + "ref/netcoreapp3.1/System.dll": {}, + "ref/netcoreapp3.1/WindowsBase.dll": {}, + "ref/netcoreapp3.1/mscorlib.dll": {}, + "ref/netcoreapp3.1/netstandard.dll": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + } + }, + ".NETCoreApp,Version=v3.1/linux-x64": { + "Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "runtime.linux-x64.Microsoft.Private.CoreFx.NETCoreApp": "4.7.0-preview3.19551.4" + }, + "compile": { + "ref/netcoreapp3.1/Microsoft.CSharp.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.dll": {}, + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.dll": {}, + "ref/netcoreapp3.1/System.AppContext.dll": {}, + "ref/netcoreapp3.1/System.Buffers.dll": {}, + "ref/netcoreapp3.1/System.Collections.Concurrent.dll": {}, + "ref/netcoreapp3.1/System.Collections.Immutable.dll": {}, + "ref/netcoreapp3.1/System.Collections.NonGeneric.dll": {}, + "ref/netcoreapp3.1/System.Collections.Specialized.dll": {}, + "ref/netcoreapp3.1/System.Collections.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Annotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Primitives.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.dll": {}, + "ref/netcoreapp3.1/System.Configuration.dll": {}, + "ref/netcoreapp3.1/System.Console.dll": {}, + "ref/netcoreapp3.1/System.Core.dll": {}, + "ref/netcoreapp3.1/System.Data.Common.dll": {}, + "ref/netcoreapp3.1/System.Data.DataSetExtensions.dll": {}, + "ref/netcoreapp3.1/System.Data.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Contracts.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Debug.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Process.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tools.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tracing.dll": {}, + "ref/netcoreapp3.1/System.Drawing.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Drawing.dll": {}, + "ref/netcoreapp3.1/System.Dynamic.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Calendars.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Globalization.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.Brotli.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Primitives.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.IsolatedStorage.dll": {}, + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.dll": {}, + "ref/netcoreapp3.1/System.IO.Pipes.dll": {}, + "ref/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/netcoreapp3.1/System.IO.dll": {}, + "ref/netcoreapp3.1/System.Linq.Expressions.dll": {}, + "ref/netcoreapp3.1/System.Linq.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Linq.Queryable.dll": {}, + "ref/netcoreapp3.1/System.Linq.dll": {}, + "ref/netcoreapp3.1/System.Memory.dll": {}, + "ref/netcoreapp3.1/System.Net.Http.dll": {}, + "ref/netcoreapp3.1/System.Net.HttpListener.dll": {}, + "ref/netcoreapp3.1/System.Net.Mail.dll": {}, + "ref/netcoreapp3.1/System.Net.NameResolution.dll": {}, + "ref/netcoreapp3.1/System.Net.NetworkInformation.dll": {}, + "ref/netcoreapp3.1/System.Net.Ping.dll": {}, + "ref/netcoreapp3.1/System.Net.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Net.Requests.dll": {}, + "ref/netcoreapp3.1/System.Net.Security.dll": {}, + "ref/netcoreapp3.1/System.Net.ServicePoint.dll": {}, + "ref/netcoreapp3.1/System.Net.Sockets.dll": {}, + "ref/netcoreapp3.1/System.Net.WebClient.dll": {}, + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.dll": {}, + "ref/netcoreapp3.1/System.Net.WebProxy.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.Client.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.dll": {}, + "ref/netcoreapp3.1/System.Net.dll": {}, + "ref/netcoreapp3.1/System.Numerics.Vectors.dll": {}, + "ref/netcoreapp3.1/System.Numerics.dll": {}, + "ref/netcoreapp3.1/System.ObjectModel.dll": {}, + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Metadata.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.dll": {}, + "ref/netcoreapp3.1/System.Resources.Reader.dll": {}, + "ref/netcoreapp3.1/System.Resources.ResourceManager.dll": {}, + "ref/netcoreapp3.1/System.Resources.Writer.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Handles.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Intrinsics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Loader.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Numerics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Security.Claims.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/netcoreapp3.1/System.Security.Principal.dll": {}, + "ref/netcoreapp3.1/System.Security.SecureString.dll": {}, + "ref/netcoreapp3.1/System.Security.dll": {}, + "ref/netcoreapp3.1/System.ServiceModel.Web.dll": {}, + "ref/netcoreapp3.1/System.ServiceProcess.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Text.Encodings.Web.dll": {}, + "ref/netcoreapp3.1/System.Text.Json.dll": {}, + "ref/netcoreapp3.1/System.Text.RegularExpressions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Channels.dll": {}, + "ref/netcoreapp3.1/System.Threading.Overlapped.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.dll": {}, + "ref/netcoreapp3.1/System.Threading.Thread.dll": {}, + "ref/netcoreapp3.1/System.Threading.ThreadPool.dll": {}, + "ref/netcoreapp3.1/System.Threading.Timer.dll": {}, + "ref/netcoreapp3.1/System.Threading.dll": {}, + "ref/netcoreapp3.1/System.Transactions.Local.dll": {}, + "ref/netcoreapp3.1/System.Transactions.dll": {}, + "ref/netcoreapp3.1/System.ValueTuple.dll": {}, + "ref/netcoreapp3.1/System.Web.HttpUtility.dll": {}, + "ref/netcoreapp3.1/System.Web.dll": {}, + "ref/netcoreapp3.1/System.Windows.dll": {}, + "ref/netcoreapp3.1/System.Xml.Linq.dll": {}, + "ref/netcoreapp3.1/System.Xml.ReaderWriter.dll": {}, + "ref/netcoreapp3.1/System.Xml.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Xml.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlSerializer.dll": {}, + "ref/netcoreapp3.1/System.Xml.dll": {}, + "ref/netcoreapp3.1/System.dll": {}, + "ref/netcoreapp3.1/WindowsBase.dll": {}, + "ref/netcoreapp3.1/mscorlib.dll": {}, + "ref/netcoreapp3.1/netstandard.dll": {} + } + }, + "runtime.linux-x64.Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.CSharp.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.Win32.Primitives.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.Win32.Registry.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.AppContext.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Buffers.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.Concurrent.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.Immutable.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.NonGeneric.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.Specialized.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.Annotations.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.Primitives.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Configuration.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Console.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Core.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Data.Common.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Data.DataSetExtensions.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Data.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Contracts.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Debug.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Process.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.StackTrace.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Tools.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.TraceSource.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Tracing.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Drawing.Primitives.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Drawing.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Dynamic.Runtime.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Globalization.Calendars.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Globalization.Extensions.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Globalization.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Compression.Brotli.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Compression.FileSystem.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Compression.ZipFile.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Compression.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.IsolatedStorage.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Pipes.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Linq.Expressions.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Linq.Parallel.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Linq.Queryable.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Linq.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Memory.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Http.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.HttpListener.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Mail.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.NameResolution.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.NetworkInformation.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Ping.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Primitives.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Requests.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Security.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.ServicePoint.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Sockets.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebClient.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebHeaderCollection.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebProxy.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebSockets.Client.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebSockets.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Numerics.Vectors.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Numerics.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.ObjectModel.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Private.DataContractSerialization.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Private.Uri.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Private.Xml.Linq.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Private.Xml.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.DispatchProxy.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Emit.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Extensions.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Metadata.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Primitives.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.TypeExtensions.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Resources.Reader.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Resources.ResourceManager.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Resources.Writer.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Extensions.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Handles.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Intrinsics.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Loader.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Numerics.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Json.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.AccessControl.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Claims.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Cng.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Csp.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Principal.Windows.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Principal.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.SecureString.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.ServiceModel.Web.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.ServiceProcess.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Encoding.Extensions.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Encoding.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Encodings.Web.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Json.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.RegularExpressions.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Channels.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Overlapped.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Tasks.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Thread.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.ThreadPool.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Timer.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Transactions.Local.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Transactions.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.ValueTuple.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Web.HttpUtility.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Web.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Windows.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.Linq.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.ReaderWriter.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.Serialization.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XDocument.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XPath.XDocument.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XPath.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XmlDocument.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XmlSerializer.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/System.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/WindowsBase.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/mscorlib.dll": {}, + "runtimes/linux-x64/lib/netcoreapp3.1/netstandard.dll": {} + }, + "native": { + "runtimes/linux-x64/native/System.IO.Compression.Native.a": {}, + "runtimes/linux-x64/native/System.IO.Compression.Native.so": {}, + "runtimes/linux-x64/native/System.IO.Compression.Native.so.dbg": {}, + "runtimes/linux-x64/native/System.Native.a": {}, + "runtimes/linux-x64/native/System.Native.so": {}, + "runtimes/linux-x64/native/System.Native.so.dbg": {}, + "runtimes/linux-x64/native/System.Net.Http.Native.a": {}, + "runtimes/linux-x64/native/System.Net.Http.Native.so": {}, + "runtimes/linux-x64/native/System.Net.Http.Native.so.dbg": {}, + "runtimes/linux-x64/native/System.Net.Security.Native.a": {}, + "runtimes/linux-x64/native/System.Net.Security.Native.so": {}, + "runtimes/linux-x64/native/System.Net.Security.Native.so.dbg": {}, + "runtimes/linux-x64/native/System.Security.Cryptography.Native.OpenSsl.a": {}, + "runtimes/linux-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {}, + "runtimes/linux-x64/native/System.Security.Cryptography.Native.OpenSsl.so.dbg": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "sha512": "pArsL7b8OzeIpQSHKwyJS6zHoLGbEG7Zu9FgncmsyZhr7BxcS7tKgmS5lcfWe1p8O8G6/UaNGskK5TQCk7LLCA==", + "type": "package", + "path": "microsoft.private.corefx.netcoreapp/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "microsoft.private.corefx.netcoreapp.4.7.0-preview3.19551.4.nupkg.sha512", + "microsoft.private.corefx.netcoreapp.nuspec", + "ref/netcoreapp3.1/Microsoft.CSharp.dll", + "ref/netcoreapp3.1/Microsoft.CSharp.pdb", + "ref/netcoreapp3.1/Microsoft.CSharp.xml", + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.dll", + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.pdb", + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.xml", + "ref/netcoreapp3.1/Microsoft.VisualBasic.dll", + "ref/netcoreapp3.1/Microsoft.VisualBasic.pdb", + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.dll", + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.pdb", + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.xml", + "ref/netcoreapp3.1/System.AppContext.dll", + "ref/netcoreapp3.1/System.AppContext.pdb", + "ref/netcoreapp3.1/System.Buffers.dll", + "ref/netcoreapp3.1/System.Buffers.pdb", + "ref/netcoreapp3.1/System.Buffers.xml", + "ref/netcoreapp3.1/System.Collections.Concurrent.dll", + "ref/netcoreapp3.1/System.Collections.Concurrent.pdb", + "ref/netcoreapp3.1/System.Collections.Concurrent.xml", + "ref/netcoreapp3.1/System.Collections.Immutable.dll", + "ref/netcoreapp3.1/System.Collections.Immutable.pdb", + "ref/netcoreapp3.1/System.Collections.Immutable.xml", + "ref/netcoreapp3.1/System.Collections.NonGeneric.dll", + "ref/netcoreapp3.1/System.Collections.NonGeneric.pdb", + "ref/netcoreapp3.1/System.Collections.NonGeneric.xml", + "ref/netcoreapp3.1/System.Collections.Specialized.dll", + "ref/netcoreapp3.1/System.Collections.Specialized.pdb", + "ref/netcoreapp3.1/System.Collections.Specialized.xml", + "ref/netcoreapp3.1/System.Collections.dll", + "ref/netcoreapp3.1/System.Collections.pdb", + "ref/netcoreapp3.1/System.Collections.xml", + "ref/netcoreapp3.1/System.ComponentModel.Annotations.dll", + "ref/netcoreapp3.1/System.ComponentModel.Annotations.pdb", + "ref/netcoreapp3.1/System.ComponentModel.Annotations.xml", + "ref/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll", + "ref/netcoreapp3.1/System.ComponentModel.DataAnnotations.pdb", + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll", + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.pdb", + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.xml", + "ref/netcoreapp3.1/System.ComponentModel.Primitives.dll", + "ref/netcoreapp3.1/System.ComponentModel.Primitives.pdb", + "ref/netcoreapp3.1/System.ComponentModel.Primitives.xml", + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.dll", + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.pdb", + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.xml", + "ref/netcoreapp3.1/System.ComponentModel.dll", + "ref/netcoreapp3.1/System.ComponentModel.pdb", + "ref/netcoreapp3.1/System.ComponentModel.xml", + "ref/netcoreapp3.1/System.Configuration.dll", + "ref/netcoreapp3.1/System.Configuration.pdb", + "ref/netcoreapp3.1/System.Console.dll", + "ref/netcoreapp3.1/System.Console.pdb", + "ref/netcoreapp3.1/System.Console.xml", + "ref/netcoreapp3.1/System.Core.dll", + "ref/netcoreapp3.1/System.Core.pdb", + "ref/netcoreapp3.1/System.Data.Common.dll", + "ref/netcoreapp3.1/System.Data.Common.pdb", + "ref/netcoreapp3.1/System.Data.Common.xml", + "ref/netcoreapp3.1/System.Data.DataSetExtensions.dll", + "ref/netcoreapp3.1/System.Data.DataSetExtensions.pdb", + "ref/netcoreapp3.1/System.Data.dll", + "ref/netcoreapp3.1/System.Data.pdb", + "ref/netcoreapp3.1/System.Diagnostics.Contracts.dll", + "ref/netcoreapp3.1/System.Diagnostics.Contracts.pdb", + "ref/netcoreapp3.1/System.Diagnostics.Contracts.xml", + "ref/netcoreapp3.1/System.Diagnostics.Debug.dll", + "ref/netcoreapp3.1/System.Diagnostics.Debug.pdb", + "ref/netcoreapp3.1/System.Diagnostics.Debug.xml", + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll", + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.pdb", + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.xml", + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll", + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.pdb", + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.xml", + "ref/netcoreapp3.1/System.Diagnostics.Process.dll", + "ref/netcoreapp3.1/System.Diagnostics.Process.pdb", + "ref/netcoreapp3.1/System.Diagnostics.Process.xml", + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.dll", + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.pdb", + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.xml", + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll", + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.pdb", + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netcoreapp3.1/System.Diagnostics.Tools.dll", + "ref/netcoreapp3.1/System.Diagnostics.Tools.pdb", + "ref/netcoreapp3.1/System.Diagnostics.Tools.xml", + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.dll", + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.pdb", + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.xml", + "ref/netcoreapp3.1/System.Diagnostics.Tracing.dll", + "ref/netcoreapp3.1/System.Diagnostics.Tracing.pdb", + "ref/netcoreapp3.1/System.Diagnostics.Tracing.xml", + "ref/netcoreapp3.1/System.Drawing.Primitives.dll", + "ref/netcoreapp3.1/System.Drawing.Primitives.pdb", + "ref/netcoreapp3.1/System.Drawing.Primitives.xml", + "ref/netcoreapp3.1/System.Drawing.dll", + "ref/netcoreapp3.1/System.Drawing.pdb", + "ref/netcoreapp3.1/System.Dynamic.Runtime.dll", + "ref/netcoreapp3.1/System.Dynamic.Runtime.pdb", + "ref/netcoreapp3.1/System.Globalization.Calendars.dll", + "ref/netcoreapp3.1/System.Globalization.Calendars.pdb", + "ref/netcoreapp3.1/System.Globalization.Extensions.dll", + "ref/netcoreapp3.1/System.Globalization.Extensions.pdb", + "ref/netcoreapp3.1/System.Globalization.dll", + "ref/netcoreapp3.1/System.Globalization.pdb", + "ref/netcoreapp3.1/System.IO.Compression.Brotli.dll", + "ref/netcoreapp3.1/System.IO.Compression.Brotli.pdb", + "ref/netcoreapp3.1/System.IO.Compression.Brotli.xml", + "ref/netcoreapp3.1/System.IO.Compression.FileSystem.dll", + "ref/netcoreapp3.1/System.IO.Compression.FileSystem.pdb", + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.dll", + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.pdb", + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.xml", + "ref/netcoreapp3.1/System.IO.Compression.dll", + "ref/netcoreapp3.1/System.IO.Compression.pdb", + "ref/netcoreapp3.1/System.IO.Compression.xml", + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll", + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.pdb", + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.xml", + "ref/netcoreapp3.1/System.IO.FileSystem.Primitives.dll", + "ref/netcoreapp3.1/System.IO.FileSystem.Primitives.pdb", + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.dll", + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.pdb", + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.xml", + "ref/netcoreapp3.1/System.IO.FileSystem.dll", + "ref/netcoreapp3.1/System.IO.FileSystem.pdb", + "ref/netcoreapp3.1/System.IO.FileSystem.xml", + "ref/netcoreapp3.1/System.IO.IsolatedStorage.dll", + "ref/netcoreapp3.1/System.IO.IsolatedStorage.pdb", + "ref/netcoreapp3.1/System.IO.IsolatedStorage.xml", + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.dll", + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.pdb", + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.xml", + "ref/netcoreapp3.1/System.IO.Pipes.dll", + "ref/netcoreapp3.1/System.IO.Pipes.pdb", + "ref/netcoreapp3.1/System.IO.Pipes.xml", + "ref/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll", + "ref/netcoreapp3.1/System.IO.UnmanagedMemoryStream.pdb", + "ref/netcoreapp3.1/System.IO.dll", + "ref/netcoreapp3.1/System.IO.pdb", + "ref/netcoreapp3.1/System.Linq.Expressions.dll", + "ref/netcoreapp3.1/System.Linq.Expressions.pdb", + "ref/netcoreapp3.1/System.Linq.Expressions.xml", + "ref/netcoreapp3.1/System.Linq.Parallel.dll", + "ref/netcoreapp3.1/System.Linq.Parallel.pdb", + "ref/netcoreapp3.1/System.Linq.Parallel.xml", + "ref/netcoreapp3.1/System.Linq.Queryable.dll", + "ref/netcoreapp3.1/System.Linq.Queryable.pdb", + "ref/netcoreapp3.1/System.Linq.Queryable.xml", + "ref/netcoreapp3.1/System.Linq.dll", + "ref/netcoreapp3.1/System.Linq.pdb", + "ref/netcoreapp3.1/System.Linq.xml", + "ref/netcoreapp3.1/System.Memory.dll", + "ref/netcoreapp3.1/System.Memory.pdb", + "ref/netcoreapp3.1/System.Memory.xml", + "ref/netcoreapp3.1/System.Net.Http.dll", + "ref/netcoreapp3.1/System.Net.Http.pdb", + "ref/netcoreapp3.1/System.Net.Http.xml", + "ref/netcoreapp3.1/System.Net.HttpListener.dll", + "ref/netcoreapp3.1/System.Net.HttpListener.pdb", + "ref/netcoreapp3.1/System.Net.HttpListener.xml", + "ref/netcoreapp3.1/System.Net.Mail.dll", + "ref/netcoreapp3.1/System.Net.Mail.pdb", + "ref/netcoreapp3.1/System.Net.Mail.xml", + "ref/netcoreapp3.1/System.Net.NameResolution.dll", + "ref/netcoreapp3.1/System.Net.NameResolution.pdb", + "ref/netcoreapp3.1/System.Net.NameResolution.xml", + "ref/netcoreapp3.1/System.Net.NetworkInformation.dll", + "ref/netcoreapp3.1/System.Net.NetworkInformation.pdb", + "ref/netcoreapp3.1/System.Net.NetworkInformation.xml", + "ref/netcoreapp3.1/System.Net.Ping.dll", + "ref/netcoreapp3.1/System.Net.Ping.pdb", + "ref/netcoreapp3.1/System.Net.Ping.xml", + "ref/netcoreapp3.1/System.Net.Primitives.dll", + "ref/netcoreapp3.1/System.Net.Primitives.pdb", + "ref/netcoreapp3.1/System.Net.Primitives.xml", + "ref/netcoreapp3.1/System.Net.Requests.dll", + "ref/netcoreapp3.1/System.Net.Requests.pdb", + "ref/netcoreapp3.1/System.Net.Requests.xml", + "ref/netcoreapp3.1/System.Net.Security.dll", + "ref/netcoreapp3.1/System.Net.Security.pdb", + "ref/netcoreapp3.1/System.Net.Security.xml", + "ref/netcoreapp3.1/System.Net.ServicePoint.dll", + "ref/netcoreapp3.1/System.Net.ServicePoint.pdb", + "ref/netcoreapp3.1/System.Net.ServicePoint.xml", + "ref/netcoreapp3.1/System.Net.Sockets.dll", + "ref/netcoreapp3.1/System.Net.Sockets.pdb", + "ref/netcoreapp3.1/System.Net.Sockets.xml", + "ref/netcoreapp3.1/System.Net.WebClient.dll", + "ref/netcoreapp3.1/System.Net.WebClient.pdb", + "ref/netcoreapp3.1/System.Net.WebClient.xml", + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.dll", + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.pdb", + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.xml", + "ref/netcoreapp3.1/System.Net.WebProxy.dll", + "ref/netcoreapp3.1/System.Net.WebProxy.pdb", + "ref/netcoreapp3.1/System.Net.WebProxy.xml", + "ref/netcoreapp3.1/System.Net.WebSockets.Client.dll", + "ref/netcoreapp3.1/System.Net.WebSockets.Client.pdb", + "ref/netcoreapp3.1/System.Net.WebSockets.Client.xml", + "ref/netcoreapp3.1/System.Net.WebSockets.dll", + "ref/netcoreapp3.1/System.Net.WebSockets.pdb", + "ref/netcoreapp3.1/System.Net.WebSockets.xml", + "ref/netcoreapp3.1/System.Net.dll", + "ref/netcoreapp3.1/System.Net.pdb", + "ref/netcoreapp3.1/System.Numerics.Vectors.dll", + "ref/netcoreapp3.1/System.Numerics.Vectors.pdb", + "ref/netcoreapp3.1/System.Numerics.Vectors.xml", + "ref/netcoreapp3.1/System.Numerics.dll", + "ref/netcoreapp3.1/System.Numerics.pdb", + "ref/netcoreapp3.1/System.ObjectModel.dll", + "ref/netcoreapp3.1/System.ObjectModel.pdb", + "ref/netcoreapp3.1/System.ObjectModel.xml", + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.dll", + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.pdb", + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.xml", + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll", + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.pdb", + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.xml", + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll", + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.pdb", + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.xml", + "ref/netcoreapp3.1/System.Reflection.Emit.dll", + "ref/netcoreapp3.1/System.Reflection.Emit.pdb", + "ref/netcoreapp3.1/System.Reflection.Emit.xml", + "ref/netcoreapp3.1/System.Reflection.Extensions.dll", + "ref/netcoreapp3.1/System.Reflection.Extensions.pdb", + "ref/netcoreapp3.1/System.Reflection.Metadata.dll", + "ref/netcoreapp3.1/System.Reflection.Metadata.pdb", + "ref/netcoreapp3.1/System.Reflection.Metadata.xml", + "ref/netcoreapp3.1/System.Reflection.Primitives.dll", + "ref/netcoreapp3.1/System.Reflection.Primitives.pdb", + "ref/netcoreapp3.1/System.Reflection.Primitives.xml", + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.dll", + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.pdb", + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.xml", + "ref/netcoreapp3.1/System.Reflection.dll", + "ref/netcoreapp3.1/System.Reflection.pdb", + "ref/netcoreapp3.1/System.Resources.Reader.dll", + "ref/netcoreapp3.1/System.Resources.Reader.pdb", + "ref/netcoreapp3.1/System.Resources.ResourceManager.dll", + "ref/netcoreapp3.1/System.Resources.ResourceManager.pdb", + "ref/netcoreapp3.1/System.Resources.ResourceManager.xml", + "ref/netcoreapp3.1/System.Resources.Writer.dll", + "ref/netcoreapp3.1/System.Resources.Writer.pdb", + "ref/netcoreapp3.1/System.Resources.Writer.xml", + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.pdb", + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll", + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.pdb", + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.xml", + "ref/netcoreapp3.1/System.Runtime.Extensions.dll", + "ref/netcoreapp3.1/System.Runtime.Extensions.pdb", + "ref/netcoreapp3.1/System.Runtime.Extensions.xml", + "ref/netcoreapp3.1/System.Runtime.Handles.dll", + "ref/netcoreapp3.1/System.Runtime.Handles.pdb", + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.pdb", + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.xml", + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll", + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.pdb", + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/netcoreapp3.1/System.Runtime.InteropServices.dll", + "ref/netcoreapp3.1/System.Runtime.InteropServices.pdb", + "ref/netcoreapp3.1/System.Runtime.InteropServices.xml", + "ref/netcoreapp3.1/System.Runtime.Intrinsics.dll", + "ref/netcoreapp3.1/System.Runtime.Intrinsics.pdb", + "ref/netcoreapp3.1/System.Runtime.Intrinsics.xml", + "ref/netcoreapp3.1/System.Runtime.Loader.dll", + "ref/netcoreapp3.1/System.Runtime.Loader.pdb", + "ref/netcoreapp3.1/System.Runtime.Loader.xml", + "ref/netcoreapp3.1/System.Runtime.Numerics.dll", + "ref/netcoreapp3.1/System.Runtime.Numerics.pdb", + "ref/netcoreapp3.1/System.Runtime.Numerics.xml", + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll", + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.pdb", + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.xml", + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.dll", + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.pdb", + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.xml", + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll", + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.pdb", + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.xml", + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.dll", + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.pdb", + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.xml", + "ref/netcoreapp3.1/System.Runtime.Serialization.dll", + "ref/netcoreapp3.1/System.Runtime.Serialization.pdb", + "ref/netcoreapp3.1/System.Runtime.dll", + "ref/netcoreapp3.1/System.Runtime.pdb", + "ref/netcoreapp3.1/System.Runtime.xml", + "ref/netcoreapp3.1/System.Security.Claims.dll", + "ref/netcoreapp3.1/System.Security.Claims.pdb", + "ref/netcoreapp3.1/System.Security.Claims.xml", + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll", + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.pdb", + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.xml", + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.dll", + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.pdb", + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.xml", + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.dll", + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.pdb", + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.xml", + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.dll", + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.pdb", + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.xml", + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll", + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.pdb", + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.xml", + "ref/netcoreapp3.1/System.Security.Principal.dll", + "ref/netcoreapp3.1/System.Security.Principal.pdb", + "ref/netcoreapp3.1/System.Security.Principal.xml", + "ref/netcoreapp3.1/System.Security.SecureString.dll", + "ref/netcoreapp3.1/System.Security.SecureString.pdb", + "ref/netcoreapp3.1/System.Security.dll", + "ref/netcoreapp3.1/System.Security.pdb", + "ref/netcoreapp3.1/System.ServiceModel.Web.dll", + "ref/netcoreapp3.1/System.ServiceModel.Web.pdb", + "ref/netcoreapp3.1/System.ServiceProcess.dll", + "ref/netcoreapp3.1/System.ServiceProcess.pdb", + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.pdb", + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.xml", + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.dll", + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.pdb", + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.xml", + "ref/netcoreapp3.1/System.Text.Encoding.dll", + "ref/netcoreapp3.1/System.Text.Encoding.pdb", + "ref/netcoreapp3.1/System.Text.Encodings.Web.dll", + "ref/netcoreapp3.1/System.Text.Encodings.Web.pdb", + "ref/netcoreapp3.1/System.Text.Encodings.Web.xml", + "ref/netcoreapp3.1/System.Text.Json.dll", + "ref/netcoreapp3.1/System.Text.Json.pdb", + "ref/netcoreapp3.1/System.Text.Json.xml", + "ref/netcoreapp3.1/System.Text.RegularExpressions.dll", + "ref/netcoreapp3.1/System.Text.RegularExpressions.pdb", + "ref/netcoreapp3.1/System.Text.RegularExpressions.xml", + "ref/netcoreapp3.1/System.Threading.Channels.dll", + "ref/netcoreapp3.1/System.Threading.Channels.pdb", + "ref/netcoreapp3.1/System.Threading.Channels.xml", + "ref/netcoreapp3.1/System.Threading.Overlapped.dll", + "ref/netcoreapp3.1/System.Threading.Overlapped.pdb", + "ref/netcoreapp3.1/System.Threading.Overlapped.xml", + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll", + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.pdb", + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.xml", + "ref/netcoreapp3.1/System.Threading.Tasks.Extensions.dll", + "ref/netcoreapp3.1/System.Threading.Tasks.Extensions.pdb", + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.dll", + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.pdb", + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.xml", + "ref/netcoreapp3.1/System.Threading.Tasks.dll", + "ref/netcoreapp3.1/System.Threading.Tasks.pdb", + "ref/netcoreapp3.1/System.Threading.Tasks.xml", + "ref/netcoreapp3.1/System.Threading.Thread.dll", + "ref/netcoreapp3.1/System.Threading.Thread.pdb", + "ref/netcoreapp3.1/System.Threading.Thread.xml", + "ref/netcoreapp3.1/System.Threading.ThreadPool.dll", + "ref/netcoreapp3.1/System.Threading.ThreadPool.pdb", + "ref/netcoreapp3.1/System.Threading.ThreadPool.xml", + "ref/netcoreapp3.1/System.Threading.Timer.dll", + "ref/netcoreapp3.1/System.Threading.Timer.pdb", + "ref/netcoreapp3.1/System.Threading.Timer.xml", + "ref/netcoreapp3.1/System.Threading.dll", + "ref/netcoreapp3.1/System.Threading.pdb", + "ref/netcoreapp3.1/System.Threading.xml", + "ref/netcoreapp3.1/System.Transactions.Local.dll", + "ref/netcoreapp3.1/System.Transactions.Local.pdb", + "ref/netcoreapp3.1/System.Transactions.Local.xml", + "ref/netcoreapp3.1/System.Transactions.dll", + "ref/netcoreapp3.1/System.Transactions.pdb", + "ref/netcoreapp3.1/System.ValueTuple.dll", + "ref/netcoreapp3.1/System.ValueTuple.pdb", + "ref/netcoreapp3.1/System.Web.HttpUtility.dll", + "ref/netcoreapp3.1/System.Web.HttpUtility.pdb", + "ref/netcoreapp3.1/System.Web.HttpUtility.xml", + "ref/netcoreapp3.1/System.Web.dll", + "ref/netcoreapp3.1/System.Web.pdb", + "ref/netcoreapp3.1/System.Windows.dll", + "ref/netcoreapp3.1/System.Windows.pdb", + "ref/netcoreapp3.1/System.Xml.Linq.dll", + "ref/netcoreapp3.1/System.Xml.Linq.pdb", + "ref/netcoreapp3.1/System.Xml.ReaderWriter.dll", + "ref/netcoreapp3.1/System.Xml.ReaderWriter.pdb", + "ref/netcoreapp3.1/System.Xml.ReaderWriter.xml", + "ref/netcoreapp3.1/System.Xml.Serialization.dll", + "ref/netcoreapp3.1/System.Xml.Serialization.pdb", + "ref/netcoreapp3.1/System.Xml.XDocument.dll", + "ref/netcoreapp3.1/System.Xml.XDocument.pdb", + "ref/netcoreapp3.1/System.Xml.XDocument.xml", + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.dll", + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.pdb", + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.xml", + "ref/netcoreapp3.1/System.Xml.XPath.dll", + "ref/netcoreapp3.1/System.Xml.XPath.pdb", + "ref/netcoreapp3.1/System.Xml.XPath.xml", + "ref/netcoreapp3.1/System.Xml.XmlDocument.dll", + "ref/netcoreapp3.1/System.Xml.XmlDocument.pdb", + "ref/netcoreapp3.1/System.Xml.XmlSerializer.dll", + "ref/netcoreapp3.1/System.Xml.XmlSerializer.pdb", + "ref/netcoreapp3.1/System.Xml.XmlSerializer.xml", + "ref/netcoreapp3.1/System.Xml.dll", + "ref/netcoreapp3.1/System.Xml.pdb", + "ref/netcoreapp3.1/System.dll", + "ref/netcoreapp3.1/System.pdb", + "ref/netcoreapp3.1/WindowsBase.dll", + "ref/netcoreapp3.1/WindowsBase.pdb", + "ref/netcoreapp3.1/WindowsBase.xml", + "ref/netcoreapp3.1/mscorlib.dll", + "ref/netcoreapp3.1/mscorlib.pdb", + "ref/netcoreapp3.1/netstandard.dll", + "ref/netcoreapp3.1/netstandard.pdb", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.linux-x64.Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "sha512": "OC5vJ8jPCZT5ft0TyUZ5V1zd5rs6TqV8Dxehnc+G10LNBrvCSOno/JJ94gkXzk27P8sk/8a5ncfBjvzC/KBF7w==", + "type": "package", + "path": "runtime.linux-x64.microsoft.private.corefx.netcoreapp/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "ref/netstandard/_._", + "runtime.linux-x64.microsoft.private.corefx.netcoreapp.4.7.0-preview3.19551.4.nupkg.sha512", + "runtime.linux-x64.microsoft.private.corefx.netcoreapp.nuspec", + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.CSharp.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.CSharp.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.Core.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.VisualBasic.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.Win32.Primitives.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.Win32.Primitives.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.Win32.Registry.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/Microsoft.Win32.Registry.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.AppContext.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.AppContext.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Buffers.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Buffers.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.Concurrent.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.Concurrent.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.Immutable.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.Immutable.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.NonGeneric.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.NonGeneric.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.Specialized.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.Specialized.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Collections.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.Annotations.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.Annotations.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.DataAnnotations.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.EventBasedAsync.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.Primitives.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.Primitives.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.TypeConverter.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ComponentModel.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Configuration.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Configuration.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Console.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Console.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Core.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Core.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Data.Common.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Data.Common.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Data.DataSetExtensions.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Data.DataSetExtensions.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Data.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Data.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Contracts.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Contracts.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Debug.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Debug.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.DiagnosticSource.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.FileVersionInfo.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Process.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Process.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.StackTrace.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.StackTrace.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Tools.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Tools.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.TraceSource.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.TraceSource.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Tracing.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Diagnostics.Tracing.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Drawing.Primitives.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Drawing.Primitives.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Drawing.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Drawing.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Dynamic.Runtime.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Dynamic.Runtime.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Globalization.Calendars.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Globalization.Calendars.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Globalization.Extensions.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Globalization.Extensions.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Globalization.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Globalization.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Compression.Brotli.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Compression.Brotli.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Compression.FileSystem.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Compression.FileSystem.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Compression.ZipFile.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Compression.ZipFile.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Compression.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Compression.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.AccessControl.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.DriveInfo.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.Primitives.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.Watcher.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.FileSystem.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.IsolatedStorage.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.IsolatedStorage.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.MemoryMappedFiles.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Pipes.AccessControl.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Pipes.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.Pipes.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.UnmanagedMemoryStream.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.IO.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Linq.Expressions.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Linq.Expressions.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Linq.Parallel.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Linq.Parallel.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Linq.Queryable.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Linq.Queryable.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Linq.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Linq.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Memory.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Memory.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Http.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Http.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.HttpListener.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.HttpListener.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Mail.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Mail.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.NameResolution.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.NameResolution.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.NetworkInformation.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.NetworkInformation.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Ping.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Ping.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Primitives.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Primitives.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Requests.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Requests.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Security.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Security.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.ServicePoint.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.ServicePoint.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Sockets.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.Sockets.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebClient.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebClient.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebHeaderCollection.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebHeaderCollection.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebProxy.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebProxy.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebSockets.Client.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebSockets.Client.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebSockets.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.WebSockets.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Net.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Numerics.Vectors.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Numerics.Vectors.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Numerics.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Numerics.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ObjectModel.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ObjectModel.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Private.DataContractSerialization.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Private.DataContractSerialization.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Private.Uri.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Private.Uri.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Private.Xml.Linq.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Private.Xml.Linq.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Private.Xml.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Private.Xml.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.DispatchProxy.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.DispatchProxy.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Emit.ILGeneration.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Emit.Lightweight.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Emit.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Emit.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Extensions.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Extensions.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Metadata.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Metadata.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Primitives.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.Primitives.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.TypeExtensions.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.TypeExtensions.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Reflection.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Resources.Reader.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Resources.Reader.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Resources.ResourceManager.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Resources.ResourceManager.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Resources.Writer.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Resources.Writer.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Extensions.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Extensions.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Handles.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Handles.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.InteropServices.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Intrinsics.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Intrinsics.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Loader.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Loader.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Numerics.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Numerics.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Formatters.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Json.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Json.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Primitives.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.Xml.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.Serialization.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.UI.Xaml.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.WindowsRuntime.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Runtime.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.AccessControl.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.AccessControl.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Claims.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Claims.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Algorithms.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Cng.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Cng.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Csp.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Csp.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Encoding.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.OpenSsl.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.Primitives.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Cryptography.X509Certificates.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Principal.Windows.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Principal.Windows.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Principal.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.Principal.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.SecureString.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.SecureString.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Security.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ServiceModel.Web.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ServiceModel.Web.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ServiceProcess.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ServiceProcess.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Encoding.CodePages.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Encoding.Extensions.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Encoding.Extensions.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Encoding.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Encoding.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Encodings.Web.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Json.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.Json.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.RegularExpressions.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Text.RegularExpressions.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Channels.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Channels.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Overlapped.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Overlapped.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Tasks.Dataflow.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Tasks.Extensions.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Tasks.Parallel.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Tasks.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Tasks.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Thread.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Thread.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.ThreadPool.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.ThreadPool.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Timer.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.Timer.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Threading.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Transactions.Local.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Transactions.Local.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Transactions.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Transactions.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ValueTuple.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.ValueTuple.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Web.HttpUtility.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Web.HttpUtility.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Web.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Web.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Windows.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Windows.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.Linq.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.Linq.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.ReaderWriter.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.ReaderWriter.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.Serialization.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.Serialization.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XDocument.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XDocument.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XPath.XDocument.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XPath.XDocument.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XPath.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XPath.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XmlDocument.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XmlDocument.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XmlSerializer.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.XmlSerializer.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.Xml.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/System.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/System.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/WindowsBase.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/WindowsBase.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/WindowsBase.xml", + "runtimes/linux-x64/lib/netcoreapp3.1/mscorlib.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/mscorlib.pdb", + "runtimes/linux-x64/lib/netcoreapp3.1/netstandard.dll", + "runtimes/linux-x64/lib/netcoreapp3.1/netstandard.pdb", + "runtimes/linux-x64/native/System.IO.Compression.Native.a", + "runtimes/linux-x64/native/System.IO.Compression.Native.so", + "runtimes/linux-x64/native/System.IO.Compression.Native.so.dbg", + "runtimes/linux-x64/native/System.Native.a", + "runtimes/linux-x64/native/System.Native.so", + "runtimes/linux-x64/native/System.Native.so.dbg", + "runtimes/linux-x64/native/System.Net.Http.Native.a", + "runtimes/linux-x64/native/System.Net.Http.Native.so", + "runtimes/linux-x64/native/System.Net.Http.Native.so.dbg", + "runtimes/linux-x64/native/System.Net.Security.Native.a", + "runtimes/linux-x64/native/System.Net.Security.Native.so", + "runtimes/linux-x64/native/System.Net.Security.Native.so.dbg", + "runtimes/linux-x64/native/System.Security.Cryptography.Native.OpenSsl.a", + "runtimes/linux-x64/native/System.Security.Cryptography.Native.OpenSsl.so", + "runtimes/linux-x64/native/System.Security.Cryptography.Native.OpenSsl.so.dbg", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview3.19551.4": { + "sha512": "BU7m1FwolaGTh/+UP0SueOqXBNpcwROK7633HRNoZ9A2kBhdoi7nsKyjHLfae3GIxchV9Cxt9nDaeU2EdhPzxQ==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.4.7.0-preview3.19551.4.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v3.1": [ + "Microsoft.Private.CoreFx.NETCoreApp >= 4.7.0-preview3.19551.4", + "System.Runtime.CompilerServices.Unsafe >= 4.7.0-preview3.19551.4" + ] + }, + "packageFolders": { + "/home/z/Dev/coreclr-sec/.packages": {} + }, + "project": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+intrinsic/benchmark+intrinsic.csproj", + "projectName": "benchmark+intrinsic", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+intrinsic/benchmark+intrinsic.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x64", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netcoreapp3.1": { + "dependencies": { + "Microsoft.Private.CoreFx.NETCoreApp": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Runtime.CompilerServices.Unsafe": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + } + }, + "imports": [ + "dnxcore50", + "netcoreapp1.1", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x64": { + "#import": [] + } + } + } +}
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x86/benchmark+intrinsic.csproj.nuget.cache b/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x86/benchmark+intrinsic.csproj.nuget.cache new file mode 100644 index 0000000000..17c7baa454 --- /dev/null +++ b/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x86/benchmark+intrinsic.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "f8nTmyYKZXY3sNjea21kVTdwz0N+GBBJvkRyflYZZKe2lCoh+Azr2upEKmiTbm08y8kyBNPU44BV66OVQWrVNQ==", + "success": true +}
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x86/benchmark+intrinsic.csproj.nuget.dgspec.json b/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x86/benchmark+intrinsic.csproj.nuget.dgspec.json new file mode 100644 index 0000000000..7b8d0814dd --- /dev/null +++ b/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x86/benchmark+intrinsic.csproj.nuget.dgspec.json @@ -0,0 +1,62 @@ +{ + "format": 1, + "restore": { + "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+intrinsic/benchmark+intrinsic.csproj": {} + }, + "projects": { + "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+intrinsic/benchmark+intrinsic.csproj": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+intrinsic/benchmark+intrinsic.csproj", + "projectName": "benchmark+intrinsic", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+intrinsic/benchmark+intrinsic.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x86", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netcoreapp3.1": { + "dependencies": { + "Microsoft.Private.CoreFx.NETCoreApp": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Runtime.CompilerServices.Unsafe": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + } + }, + "imports": [ + "dnxcore50", + "netcoreapp1.1", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x86": { + "#import": [] + } + } + } + } +}
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x86/benchmark+intrinsic.csproj.nuget.g.props b/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x86/benchmark+intrinsic.csproj.nuget.g.props new file mode 100644 index 0000000000..a9eafdb0ac --- /dev/null +++ b/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x86/benchmark+intrinsic.csproj.nuget.g.props @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> + <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> + <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> + <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageRoot> + <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageFolders> + <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.4.0</NuGetToolVersion> + </PropertyGroup> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x86/benchmark+intrinsic.csproj.nuget.g.targets b/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x86/benchmark+intrinsic.csproj.nuget.g.targets new file mode 100644 index 0000000000..53cfaa19b1 --- /dev/null +++ b/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x86/benchmark+intrinsic.csproj.nuget.g.targets @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x86/project.assets.json b/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x86/project.assets.json new file mode 100644 index 0000000000..5c7e0bbbf6 --- /dev/null +++ b/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x86/project.assets.json @@ -0,0 +1,858 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v3.1": { + "Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netcoreapp3.1/Microsoft.CSharp.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.dll": {}, + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.dll": {}, + "ref/netcoreapp3.1/System.AppContext.dll": {}, + "ref/netcoreapp3.1/System.Buffers.dll": {}, + "ref/netcoreapp3.1/System.Collections.Concurrent.dll": {}, + "ref/netcoreapp3.1/System.Collections.Immutable.dll": {}, + "ref/netcoreapp3.1/System.Collections.NonGeneric.dll": {}, + "ref/netcoreapp3.1/System.Collections.Specialized.dll": {}, + "ref/netcoreapp3.1/System.Collections.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Annotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Primitives.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.dll": {}, + "ref/netcoreapp3.1/System.Configuration.dll": {}, + "ref/netcoreapp3.1/System.Console.dll": {}, + "ref/netcoreapp3.1/System.Core.dll": {}, + "ref/netcoreapp3.1/System.Data.Common.dll": {}, + "ref/netcoreapp3.1/System.Data.DataSetExtensions.dll": {}, + "ref/netcoreapp3.1/System.Data.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Contracts.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Debug.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Process.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tools.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tracing.dll": {}, + "ref/netcoreapp3.1/System.Drawing.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Drawing.dll": {}, + "ref/netcoreapp3.1/System.Dynamic.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Calendars.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Globalization.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.Brotli.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Primitives.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.IsolatedStorage.dll": {}, + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.dll": {}, + "ref/netcoreapp3.1/System.IO.Pipes.dll": {}, + "ref/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/netcoreapp3.1/System.IO.dll": {}, + "ref/netcoreapp3.1/System.Linq.Expressions.dll": {}, + "ref/netcoreapp3.1/System.Linq.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Linq.Queryable.dll": {}, + "ref/netcoreapp3.1/System.Linq.dll": {}, + "ref/netcoreapp3.1/System.Memory.dll": {}, + "ref/netcoreapp3.1/System.Net.Http.dll": {}, + "ref/netcoreapp3.1/System.Net.HttpListener.dll": {}, + "ref/netcoreapp3.1/System.Net.Mail.dll": {}, + "ref/netcoreapp3.1/System.Net.NameResolution.dll": {}, + "ref/netcoreapp3.1/System.Net.NetworkInformation.dll": {}, + "ref/netcoreapp3.1/System.Net.Ping.dll": {}, + "ref/netcoreapp3.1/System.Net.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Net.Requests.dll": {}, + "ref/netcoreapp3.1/System.Net.Security.dll": {}, + "ref/netcoreapp3.1/System.Net.ServicePoint.dll": {}, + "ref/netcoreapp3.1/System.Net.Sockets.dll": {}, + "ref/netcoreapp3.1/System.Net.WebClient.dll": {}, + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.dll": {}, + "ref/netcoreapp3.1/System.Net.WebProxy.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.Client.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.dll": {}, + "ref/netcoreapp3.1/System.Net.dll": {}, + "ref/netcoreapp3.1/System.Numerics.Vectors.dll": {}, + "ref/netcoreapp3.1/System.Numerics.dll": {}, + "ref/netcoreapp3.1/System.ObjectModel.dll": {}, + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Metadata.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.dll": {}, + "ref/netcoreapp3.1/System.Resources.Reader.dll": {}, + "ref/netcoreapp3.1/System.Resources.ResourceManager.dll": {}, + "ref/netcoreapp3.1/System.Resources.Writer.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Handles.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Intrinsics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Loader.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Numerics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Security.Claims.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/netcoreapp3.1/System.Security.Principal.dll": {}, + "ref/netcoreapp3.1/System.Security.SecureString.dll": {}, + "ref/netcoreapp3.1/System.Security.dll": {}, + "ref/netcoreapp3.1/System.ServiceModel.Web.dll": {}, + "ref/netcoreapp3.1/System.ServiceProcess.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Text.Encodings.Web.dll": {}, + "ref/netcoreapp3.1/System.Text.Json.dll": {}, + "ref/netcoreapp3.1/System.Text.RegularExpressions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Channels.dll": {}, + "ref/netcoreapp3.1/System.Threading.Overlapped.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.dll": {}, + "ref/netcoreapp3.1/System.Threading.Thread.dll": {}, + "ref/netcoreapp3.1/System.Threading.ThreadPool.dll": {}, + "ref/netcoreapp3.1/System.Threading.Timer.dll": {}, + "ref/netcoreapp3.1/System.Threading.dll": {}, + "ref/netcoreapp3.1/System.Transactions.Local.dll": {}, + "ref/netcoreapp3.1/System.Transactions.dll": {}, + "ref/netcoreapp3.1/System.ValueTuple.dll": {}, + "ref/netcoreapp3.1/System.Web.HttpUtility.dll": {}, + "ref/netcoreapp3.1/System.Web.dll": {}, + "ref/netcoreapp3.1/System.Windows.dll": {}, + "ref/netcoreapp3.1/System.Xml.Linq.dll": {}, + "ref/netcoreapp3.1/System.Xml.ReaderWriter.dll": {}, + "ref/netcoreapp3.1/System.Xml.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Xml.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlSerializer.dll": {}, + "ref/netcoreapp3.1/System.Xml.dll": {}, + "ref/netcoreapp3.1/System.dll": {}, + "ref/netcoreapp3.1/WindowsBase.dll": {}, + "ref/netcoreapp3.1/mscorlib.dll": {}, + "ref/netcoreapp3.1/netstandard.dll": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + } + }, + ".NETCoreApp,Version=v3.1/linux-x86": { + "Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netcoreapp3.1/Microsoft.CSharp.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.dll": {}, + "ref/netcoreapp3.1/Microsoft.VisualBasic.dll": {}, + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.dll": {}, + "ref/netcoreapp3.1/System.AppContext.dll": {}, + "ref/netcoreapp3.1/System.Buffers.dll": {}, + "ref/netcoreapp3.1/System.Collections.Concurrent.dll": {}, + "ref/netcoreapp3.1/System.Collections.Immutable.dll": {}, + "ref/netcoreapp3.1/System.Collections.NonGeneric.dll": {}, + "ref/netcoreapp3.1/System.Collections.Specialized.dll": {}, + "ref/netcoreapp3.1/System.Collections.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Annotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.Primitives.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.dll": {}, + "ref/netcoreapp3.1/System.ComponentModel.dll": {}, + "ref/netcoreapp3.1/System.Configuration.dll": {}, + "ref/netcoreapp3.1/System.Console.dll": {}, + "ref/netcoreapp3.1/System.Core.dll": {}, + "ref/netcoreapp3.1/System.Data.Common.dll": {}, + "ref/netcoreapp3.1/System.Data.DataSetExtensions.dll": {}, + "ref/netcoreapp3.1/System.Data.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Contracts.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Debug.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Process.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tools.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.dll": {}, + "ref/netcoreapp3.1/System.Diagnostics.Tracing.dll": {}, + "ref/netcoreapp3.1/System.Drawing.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Drawing.dll": {}, + "ref/netcoreapp3.1/System.Dynamic.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Calendars.dll": {}, + "ref/netcoreapp3.1/System.Globalization.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Globalization.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.Brotli.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.dll": {}, + "ref/netcoreapp3.1/System.IO.Compression.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Primitives.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.dll": {}, + "ref/netcoreapp3.1/System.IO.FileSystem.dll": {}, + "ref/netcoreapp3.1/System.IO.IsolatedStorage.dll": {}, + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.dll": {}, + "ref/netcoreapp3.1/System.IO.Pipes.dll": {}, + "ref/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/netcoreapp3.1/System.IO.dll": {}, + "ref/netcoreapp3.1/System.Linq.Expressions.dll": {}, + "ref/netcoreapp3.1/System.Linq.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Linq.Queryable.dll": {}, + "ref/netcoreapp3.1/System.Linq.dll": {}, + "ref/netcoreapp3.1/System.Memory.dll": {}, + "ref/netcoreapp3.1/System.Net.Http.dll": {}, + "ref/netcoreapp3.1/System.Net.HttpListener.dll": {}, + "ref/netcoreapp3.1/System.Net.Mail.dll": {}, + "ref/netcoreapp3.1/System.Net.NameResolution.dll": {}, + "ref/netcoreapp3.1/System.Net.NetworkInformation.dll": {}, + "ref/netcoreapp3.1/System.Net.Ping.dll": {}, + "ref/netcoreapp3.1/System.Net.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Net.Requests.dll": {}, + "ref/netcoreapp3.1/System.Net.Security.dll": {}, + "ref/netcoreapp3.1/System.Net.ServicePoint.dll": {}, + "ref/netcoreapp3.1/System.Net.Sockets.dll": {}, + "ref/netcoreapp3.1/System.Net.WebClient.dll": {}, + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.dll": {}, + "ref/netcoreapp3.1/System.Net.WebProxy.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.Client.dll": {}, + "ref/netcoreapp3.1/System.Net.WebSockets.dll": {}, + "ref/netcoreapp3.1/System.Net.dll": {}, + "ref/netcoreapp3.1/System.Numerics.Vectors.dll": {}, + "ref/netcoreapp3.1/System.Numerics.dll": {}, + "ref/netcoreapp3.1/System.ObjectModel.dll": {}, + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Emit.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Metadata.dll": {}, + "ref/netcoreapp3.1/System.Reflection.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.dll": {}, + "ref/netcoreapp3.1/System.Reflection.dll": {}, + "ref/netcoreapp3.1/System.Resources.Reader.dll": {}, + "ref/netcoreapp3.1/System.Resources.ResourceManager.dll": {}, + "ref/netcoreapp3.1/System.Resources.Writer.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}, + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Handles.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/netcoreapp3.1/System.Runtime.InteropServices.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Intrinsics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Loader.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Numerics.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.dll": {}, + "ref/netcoreapp3.1/System.Runtime.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Runtime.dll": {}, + "ref/netcoreapp3.1/System.Security.Claims.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.dll": {}, + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/netcoreapp3.1/System.Security.Principal.dll": {}, + "ref/netcoreapp3.1/System.Security.SecureString.dll": {}, + "ref/netcoreapp3.1/System.Security.dll": {}, + "ref/netcoreapp3.1/System.ServiceModel.Web.dll": {}, + "ref/netcoreapp3.1/System.ServiceProcess.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Text.Encoding.dll": {}, + "ref/netcoreapp3.1/System.Text.Encodings.Web.dll": {}, + "ref/netcoreapp3.1/System.Text.Json.dll": {}, + "ref/netcoreapp3.1/System.Text.RegularExpressions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Channels.dll": {}, + "ref/netcoreapp3.1/System.Threading.Overlapped.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Extensions.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.dll": {}, + "ref/netcoreapp3.1/System.Threading.Tasks.dll": {}, + "ref/netcoreapp3.1/System.Threading.Thread.dll": {}, + "ref/netcoreapp3.1/System.Threading.ThreadPool.dll": {}, + "ref/netcoreapp3.1/System.Threading.Timer.dll": {}, + "ref/netcoreapp3.1/System.Threading.dll": {}, + "ref/netcoreapp3.1/System.Transactions.Local.dll": {}, + "ref/netcoreapp3.1/System.Transactions.dll": {}, + "ref/netcoreapp3.1/System.ValueTuple.dll": {}, + "ref/netcoreapp3.1/System.Web.HttpUtility.dll": {}, + "ref/netcoreapp3.1/System.Web.dll": {}, + "ref/netcoreapp3.1/System.Windows.dll": {}, + "ref/netcoreapp3.1/System.Xml.Linq.dll": {}, + "ref/netcoreapp3.1/System.Xml.ReaderWriter.dll": {}, + "ref/netcoreapp3.1/System.Xml.Serialization.dll": {}, + "ref/netcoreapp3.1/System.Xml.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XPath.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlDocument.dll": {}, + "ref/netcoreapp3.1/System.Xml.XmlSerializer.dll": {}, + "ref/netcoreapp3.1/System.Xml.dll": {}, + "ref/netcoreapp3.1/System.dll": {}, + "ref/netcoreapp3.1/WindowsBase.dll": {}, + "ref/netcoreapp3.1/mscorlib.dll": {}, + "ref/netcoreapp3.1/netstandard.dll": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview3.19551.4": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.Private.CoreFx.NETCoreApp/4.7.0-preview3.19551.4": { + "sha512": "pArsL7b8OzeIpQSHKwyJS6zHoLGbEG7Zu9FgncmsyZhr7BxcS7tKgmS5lcfWe1p8O8G6/UaNGskK5TQCk7LLCA==", + "type": "package", + "path": "microsoft.private.corefx.netcoreapp/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "microsoft.private.corefx.netcoreapp.4.7.0-preview3.19551.4.nupkg.sha512", + "microsoft.private.corefx.netcoreapp.nuspec", + "ref/netcoreapp3.1/Microsoft.CSharp.dll", + "ref/netcoreapp3.1/Microsoft.CSharp.pdb", + "ref/netcoreapp3.1/Microsoft.CSharp.xml", + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.dll", + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.pdb", + "ref/netcoreapp3.1/Microsoft.VisualBasic.Core.xml", + "ref/netcoreapp3.1/Microsoft.VisualBasic.dll", + "ref/netcoreapp3.1/Microsoft.VisualBasic.pdb", + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.dll", + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.pdb", + "ref/netcoreapp3.1/Microsoft.Win32.Primitives.xml", + "ref/netcoreapp3.1/System.AppContext.dll", + "ref/netcoreapp3.1/System.AppContext.pdb", + "ref/netcoreapp3.1/System.Buffers.dll", + "ref/netcoreapp3.1/System.Buffers.pdb", + "ref/netcoreapp3.1/System.Buffers.xml", + "ref/netcoreapp3.1/System.Collections.Concurrent.dll", + "ref/netcoreapp3.1/System.Collections.Concurrent.pdb", + "ref/netcoreapp3.1/System.Collections.Concurrent.xml", + "ref/netcoreapp3.1/System.Collections.Immutable.dll", + "ref/netcoreapp3.1/System.Collections.Immutable.pdb", + "ref/netcoreapp3.1/System.Collections.Immutable.xml", + "ref/netcoreapp3.1/System.Collections.NonGeneric.dll", + "ref/netcoreapp3.1/System.Collections.NonGeneric.pdb", + "ref/netcoreapp3.1/System.Collections.NonGeneric.xml", + "ref/netcoreapp3.1/System.Collections.Specialized.dll", + "ref/netcoreapp3.1/System.Collections.Specialized.pdb", + "ref/netcoreapp3.1/System.Collections.Specialized.xml", + "ref/netcoreapp3.1/System.Collections.dll", + "ref/netcoreapp3.1/System.Collections.pdb", + "ref/netcoreapp3.1/System.Collections.xml", + "ref/netcoreapp3.1/System.ComponentModel.Annotations.dll", + "ref/netcoreapp3.1/System.ComponentModel.Annotations.pdb", + "ref/netcoreapp3.1/System.ComponentModel.Annotations.xml", + "ref/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll", + "ref/netcoreapp3.1/System.ComponentModel.DataAnnotations.pdb", + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll", + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.pdb", + "ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.xml", + "ref/netcoreapp3.1/System.ComponentModel.Primitives.dll", + "ref/netcoreapp3.1/System.ComponentModel.Primitives.pdb", + "ref/netcoreapp3.1/System.ComponentModel.Primitives.xml", + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.dll", + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.pdb", + "ref/netcoreapp3.1/System.ComponentModel.TypeConverter.xml", + "ref/netcoreapp3.1/System.ComponentModel.dll", + "ref/netcoreapp3.1/System.ComponentModel.pdb", + "ref/netcoreapp3.1/System.ComponentModel.xml", + "ref/netcoreapp3.1/System.Configuration.dll", + "ref/netcoreapp3.1/System.Configuration.pdb", + "ref/netcoreapp3.1/System.Console.dll", + "ref/netcoreapp3.1/System.Console.pdb", + "ref/netcoreapp3.1/System.Console.xml", + "ref/netcoreapp3.1/System.Core.dll", + "ref/netcoreapp3.1/System.Core.pdb", + "ref/netcoreapp3.1/System.Data.Common.dll", + "ref/netcoreapp3.1/System.Data.Common.pdb", + "ref/netcoreapp3.1/System.Data.Common.xml", + "ref/netcoreapp3.1/System.Data.DataSetExtensions.dll", + "ref/netcoreapp3.1/System.Data.DataSetExtensions.pdb", + "ref/netcoreapp3.1/System.Data.dll", + "ref/netcoreapp3.1/System.Data.pdb", + "ref/netcoreapp3.1/System.Diagnostics.Contracts.dll", + "ref/netcoreapp3.1/System.Diagnostics.Contracts.pdb", + "ref/netcoreapp3.1/System.Diagnostics.Contracts.xml", + "ref/netcoreapp3.1/System.Diagnostics.Debug.dll", + "ref/netcoreapp3.1/System.Diagnostics.Debug.pdb", + "ref/netcoreapp3.1/System.Diagnostics.Debug.xml", + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll", + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.pdb", + "ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.xml", + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll", + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.pdb", + "ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.xml", + "ref/netcoreapp3.1/System.Diagnostics.Process.dll", + "ref/netcoreapp3.1/System.Diagnostics.Process.pdb", + "ref/netcoreapp3.1/System.Diagnostics.Process.xml", + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.dll", + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.pdb", + "ref/netcoreapp3.1/System.Diagnostics.StackTrace.xml", + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll", + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.pdb", + "ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.xml", + "ref/netcoreapp3.1/System.Diagnostics.Tools.dll", + "ref/netcoreapp3.1/System.Diagnostics.Tools.pdb", + "ref/netcoreapp3.1/System.Diagnostics.Tools.xml", + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.dll", + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.pdb", + "ref/netcoreapp3.1/System.Diagnostics.TraceSource.xml", + "ref/netcoreapp3.1/System.Diagnostics.Tracing.dll", + "ref/netcoreapp3.1/System.Diagnostics.Tracing.pdb", + "ref/netcoreapp3.1/System.Diagnostics.Tracing.xml", + "ref/netcoreapp3.1/System.Drawing.Primitives.dll", + "ref/netcoreapp3.1/System.Drawing.Primitives.pdb", + "ref/netcoreapp3.1/System.Drawing.Primitives.xml", + "ref/netcoreapp3.1/System.Drawing.dll", + "ref/netcoreapp3.1/System.Drawing.pdb", + "ref/netcoreapp3.1/System.Dynamic.Runtime.dll", + "ref/netcoreapp3.1/System.Dynamic.Runtime.pdb", + "ref/netcoreapp3.1/System.Globalization.Calendars.dll", + "ref/netcoreapp3.1/System.Globalization.Calendars.pdb", + "ref/netcoreapp3.1/System.Globalization.Extensions.dll", + "ref/netcoreapp3.1/System.Globalization.Extensions.pdb", + "ref/netcoreapp3.1/System.Globalization.dll", + "ref/netcoreapp3.1/System.Globalization.pdb", + "ref/netcoreapp3.1/System.IO.Compression.Brotli.dll", + "ref/netcoreapp3.1/System.IO.Compression.Brotli.pdb", + "ref/netcoreapp3.1/System.IO.Compression.Brotli.xml", + "ref/netcoreapp3.1/System.IO.Compression.FileSystem.dll", + "ref/netcoreapp3.1/System.IO.Compression.FileSystem.pdb", + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.dll", + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.pdb", + "ref/netcoreapp3.1/System.IO.Compression.ZipFile.xml", + "ref/netcoreapp3.1/System.IO.Compression.dll", + "ref/netcoreapp3.1/System.IO.Compression.pdb", + "ref/netcoreapp3.1/System.IO.Compression.xml", + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll", + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.pdb", + "ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.xml", + "ref/netcoreapp3.1/System.IO.FileSystem.Primitives.dll", + "ref/netcoreapp3.1/System.IO.FileSystem.Primitives.pdb", + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.dll", + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.pdb", + "ref/netcoreapp3.1/System.IO.FileSystem.Watcher.xml", + "ref/netcoreapp3.1/System.IO.FileSystem.dll", + "ref/netcoreapp3.1/System.IO.FileSystem.pdb", + "ref/netcoreapp3.1/System.IO.FileSystem.xml", + "ref/netcoreapp3.1/System.IO.IsolatedStorage.dll", + "ref/netcoreapp3.1/System.IO.IsolatedStorage.pdb", + "ref/netcoreapp3.1/System.IO.IsolatedStorage.xml", + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.dll", + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.pdb", + "ref/netcoreapp3.1/System.IO.MemoryMappedFiles.xml", + "ref/netcoreapp3.1/System.IO.Pipes.dll", + "ref/netcoreapp3.1/System.IO.Pipes.pdb", + "ref/netcoreapp3.1/System.IO.Pipes.xml", + "ref/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll", + "ref/netcoreapp3.1/System.IO.UnmanagedMemoryStream.pdb", + "ref/netcoreapp3.1/System.IO.dll", + "ref/netcoreapp3.1/System.IO.pdb", + "ref/netcoreapp3.1/System.Linq.Expressions.dll", + "ref/netcoreapp3.1/System.Linq.Expressions.pdb", + "ref/netcoreapp3.1/System.Linq.Expressions.xml", + "ref/netcoreapp3.1/System.Linq.Parallel.dll", + "ref/netcoreapp3.1/System.Linq.Parallel.pdb", + "ref/netcoreapp3.1/System.Linq.Parallel.xml", + "ref/netcoreapp3.1/System.Linq.Queryable.dll", + "ref/netcoreapp3.1/System.Linq.Queryable.pdb", + "ref/netcoreapp3.1/System.Linq.Queryable.xml", + "ref/netcoreapp3.1/System.Linq.dll", + "ref/netcoreapp3.1/System.Linq.pdb", + "ref/netcoreapp3.1/System.Linq.xml", + "ref/netcoreapp3.1/System.Memory.dll", + "ref/netcoreapp3.1/System.Memory.pdb", + "ref/netcoreapp3.1/System.Memory.xml", + "ref/netcoreapp3.1/System.Net.Http.dll", + "ref/netcoreapp3.1/System.Net.Http.pdb", + "ref/netcoreapp3.1/System.Net.Http.xml", + "ref/netcoreapp3.1/System.Net.HttpListener.dll", + "ref/netcoreapp3.1/System.Net.HttpListener.pdb", + "ref/netcoreapp3.1/System.Net.HttpListener.xml", + "ref/netcoreapp3.1/System.Net.Mail.dll", + "ref/netcoreapp3.1/System.Net.Mail.pdb", + "ref/netcoreapp3.1/System.Net.Mail.xml", + "ref/netcoreapp3.1/System.Net.NameResolution.dll", + "ref/netcoreapp3.1/System.Net.NameResolution.pdb", + "ref/netcoreapp3.1/System.Net.NameResolution.xml", + "ref/netcoreapp3.1/System.Net.NetworkInformation.dll", + "ref/netcoreapp3.1/System.Net.NetworkInformation.pdb", + "ref/netcoreapp3.1/System.Net.NetworkInformation.xml", + "ref/netcoreapp3.1/System.Net.Ping.dll", + "ref/netcoreapp3.1/System.Net.Ping.pdb", + "ref/netcoreapp3.1/System.Net.Ping.xml", + "ref/netcoreapp3.1/System.Net.Primitives.dll", + "ref/netcoreapp3.1/System.Net.Primitives.pdb", + "ref/netcoreapp3.1/System.Net.Primitives.xml", + "ref/netcoreapp3.1/System.Net.Requests.dll", + "ref/netcoreapp3.1/System.Net.Requests.pdb", + "ref/netcoreapp3.1/System.Net.Requests.xml", + "ref/netcoreapp3.1/System.Net.Security.dll", + "ref/netcoreapp3.1/System.Net.Security.pdb", + "ref/netcoreapp3.1/System.Net.Security.xml", + "ref/netcoreapp3.1/System.Net.ServicePoint.dll", + "ref/netcoreapp3.1/System.Net.ServicePoint.pdb", + "ref/netcoreapp3.1/System.Net.ServicePoint.xml", + "ref/netcoreapp3.1/System.Net.Sockets.dll", + "ref/netcoreapp3.1/System.Net.Sockets.pdb", + "ref/netcoreapp3.1/System.Net.Sockets.xml", + "ref/netcoreapp3.1/System.Net.WebClient.dll", + "ref/netcoreapp3.1/System.Net.WebClient.pdb", + "ref/netcoreapp3.1/System.Net.WebClient.xml", + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.dll", + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.pdb", + "ref/netcoreapp3.1/System.Net.WebHeaderCollection.xml", + "ref/netcoreapp3.1/System.Net.WebProxy.dll", + "ref/netcoreapp3.1/System.Net.WebProxy.pdb", + "ref/netcoreapp3.1/System.Net.WebProxy.xml", + "ref/netcoreapp3.1/System.Net.WebSockets.Client.dll", + "ref/netcoreapp3.1/System.Net.WebSockets.Client.pdb", + "ref/netcoreapp3.1/System.Net.WebSockets.Client.xml", + "ref/netcoreapp3.1/System.Net.WebSockets.dll", + "ref/netcoreapp3.1/System.Net.WebSockets.pdb", + "ref/netcoreapp3.1/System.Net.WebSockets.xml", + "ref/netcoreapp3.1/System.Net.dll", + "ref/netcoreapp3.1/System.Net.pdb", + "ref/netcoreapp3.1/System.Numerics.Vectors.dll", + "ref/netcoreapp3.1/System.Numerics.Vectors.pdb", + "ref/netcoreapp3.1/System.Numerics.Vectors.xml", + "ref/netcoreapp3.1/System.Numerics.dll", + "ref/netcoreapp3.1/System.Numerics.pdb", + "ref/netcoreapp3.1/System.ObjectModel.dll", + "ref/netcoreapp3.1/System.ObjectModel.pdb", + "ref/netcoreapp3.1/System.ObjectModel.xml", + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.dll", + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.pdb", + "ref/netcoreapp3.1/System.Reflection.DispatchProxy.xml", + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll", + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.pdb", + "ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.xml", + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll", + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.pdb", + "ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.xml", + "ref/netcoreapp3.1/System.Reflection.Emit.dll", + "ref/netcoreapp3.1/System.Reflection.Emit.pdb", + "ref/netcoreapp3.1/System.Reflection.Emit.xml", + "ref/netcoreapp3.1/System.Reflection.Extensions.dll", + "ref/netcoreapp3.1/System.Reflection.Extensions.pdb", + "ref/netcoreapp3.1/System.Reflection.Metadata.dll", + "ref/netcoreapp3.1/System.Reflection.Metadata.pdb", + "ref/netcoreapp3.1/System.Reflection.Metadata.xml", + "ref/netcoreapp3.1/System.Reflection.Primitives.dll", + "ref/netcoreapp3.1/System.Reflection.Primitives.pdb", + "ref/netcoreapp3.1/System.Reflection.Primitives.xml", + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.dll", + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.pdb", + "ref/netcoreapp3.1/System.Reflection.TypeExtensions.xml", + "ref/netcoreapp3.1/System.Reflection.dll", + "ref/netcoreapp3.1/System.Reflection.pdb", + "ref/netcoreapp3.1/System.Resources.Reader.dll", + "ref/netcoreapp3.1/System.Resources.Reader.pdb", + "ref/netcoreapp3.1/System.Resources.ResourceManager.dll", + "ref/netcoreapp3.1/System.Resources.ResourceManager.pdb", + "ref/netcoreapp3.1/System.Resources.ResourceManager.xml", + "ref/netcoreapp3.1/System.Resources.Writer.dll", + "ref/netcoreapp3.1/System.Resources.Writer.pdb", + "ref/netcoreapp3.1/System.Resources.Writer.xml", + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.pdb", + "ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll", + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.pdb", + "ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.xml", + "ref/netcoreapp3.1/System.Runtime.Extensions.dll", + "ref/netcoreapp3.1/System.Runtime.Extensions.pdb", + "ref/netcoreapp3.1/System.Runtime.Extensions.xml", + "ref/netcoreapp3.1/System.Runtime.Handles.dll", + "ref/netcoreapp3.1/System.Runtime.Handles.pdb", + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.pdb", + "ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.xml", + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll", + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.pdb", + "ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/netcoreapp3.1/System.Runtime.InteropServices.dll", + "ref/netcoreapp3.1/System.Runtime.InteropServices.pdb", + "ref/netcoreapp3.1/System.Runtime.InteropServices.xml", + "ref/netcoreapp3.1/System.Runtime.Intrinsics.dll", + "ref/netcoreapp3.1/System.Runtime.Intrinsics.pdb", + "ref/netcoreapp3.1/System.Runtime.Intrinsics.xml", + "ref/netcoreapp3.1/System.Runtime.Loader.dll", + "ref/netcoreapp3.1/System.Runtime.Loader.pdb", + "ref/netcoreapp3.1/System.Runtime.Loader.xml", + "ref/netcoreapp3.1/System.Runtime.Numerics.dll", + "ref/netcoreapp3.1/System.Runtime.Numerics.pdb", + "ref/netcoreapp3.1/System.Runtime.Numerics.xml", + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll", + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.pdb", + "ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.xml", + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.dll", + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.pdb", + "ref/netcoreapp3.1/System.Runtime.Serialization.Json.xml", + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll", + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.pdb", + "ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.xml", + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.dll", + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.pdb", + "ref/netcoreapp3.1/System.Runtime.Serialization.Xml.xml", + "ref/netcoreapp3.1/System.Runtime.Serialization.dll", + "ref/netcoreapp3.1/System.Runtime.Serialization.pdb", + "ref/netcoreapp3.1/System.Runtime.dll", + "ref/netcoreapp3.1/System.Runtime.pdb", + "ref/netcoreapp3.1/System.Runtime.xml", + "ref/netcoreapp3.1/System.Security.Claims.dll", + "ref/netcoreapp3.1/System.Security.Claims.pdb", + "ref/netcoreapp3.1/System.Security.Claims.xml", + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll", + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.pdb", + "ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.xml", + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.dll", + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.pdb", + "ref/netcoreapp3.1/System.Security.Cryptography.Csp.xml", + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.dll", + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.pdb", + "ref/netcoreapp3.1/System.Security.Cryptography.Encoding.xml", + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.dll", + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.pdb", + "ref/netcoreapp3.1/System.Security.Cryptography.Primitives.xml", + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll", + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.pdb", + "ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.xml", + "ref/netcoreapp3.1/System.Security.Principal.dll", + "ref/netcoreapp3.1/System.Security.Principal.pdb", + "ref/netcoreapp3.1/System.Security.Principal.xml", + "ref/netcoreapp3.1/System.Security.SecureString.dll", + "ref/netcoreapp3.1/System.Security.SecureString.pdb", + "ref/netcoreapp3.1/System.Security.dll", + "ref/netcoreapp3.1/System.Security.pdb", + "ref/netcoreapp3.1/System.ServiceModel.Web.dll", + "ref/netcoreapp3.1/System.ServiceModel.Web.pdb", + "ref/netcoreapp3.1/System.ServiceProcess.dll", + "ref/netcoreapp3.1/System.ServiceProcess.pdb", + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.pdb", + "ref/netcoreapp3.1/System.Text.Encoding.CodePages.xml", + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.dll", + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.pdb", + "ref/netcoreapp3.1/System.Text.Encoding.Extensions.xml", + "ref/netcoreapp3.1/System.Text.Encoding.dll", + "ref/netcoreapp3.1/System.Text.Encoding.pdb", + "ref/netcoreapp3.1/System.Text.Encodings.Web.dll", + "ref/netcoreapp3.1/System.Text.Encodings.Web.pdb", + "ref/netcoreapp3.1/System.Text.Encodings.Web.xml", + "ref/netcoreapp3.1/System.Text.Json.dll", + "ref/netcoreapp3.1/System.Text.Json.pdb", + "ref/netcoreapp3.1/System.Text.Json.xml", + "ref/netcoreapp3.1/System.Text.RegularExpressions.dll", + "ref/netcoreapp3.1/System.Text.RegularExpressions.pdb", + "ref/netcoreapp3.1/System.Text.RegularExpressions.xml", + "ref/netcoreapp3.1/System.Threading.Channels.dll", + "ref/netcoreapp3.1/System.Threading.Channels.pdb", + "ref/netcoreapp3.1/System.Threading.Channels.xml", + "ref/netcoreapp3.1/System.Threading.Overlapped.dll", + "ref/netcoreapp3.1/System.Threading.Overlapped.pdb", + "ref/netcoreapp3.1/System.Threading.Overlapped.xml", + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll", + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.pdb", + "ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.xml", + "ref/netcoreapp3.1/System.Threading.Tasks.Extensions.dll", + "ref/netcoreapp3.1/System.Threading.Tasks.Extensions.pdb", + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.dll", + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.pdb", + "ref/netcoreapp3.1/System.Threading.Tasks.Parallel.xml", + "ref/netcoreapp3.1/System.Threading.Tasks.dll", + "ref/netcoreapp3.1/System.Threading.Tasks.pdb", + "ref/netcoreapp3.1/System.Threading.Tasks.xml", + "ref/netcoreapp3.1/System.Threading.Thread.dll", + "ref/netcoreapp3.1/System.Threading.Thread.pdb", + "ref/netcoreapp3.1/System.Threading.Thread.xml", + "ref/netcoreapp3.1/System.Threading.ThreadPool.dll", + "ref/netcoreapp3.1/System.Threading.ThreadPool.pdb", + "ref/netcoreapp3.1/System.Threading.ThreadPool.xml", + "ref/netcoreapp3.1/System.Threading.Timer.dll", + "ref/netcoreapp3.1/System.Threading.Timer.pdb", + "ref/netcoreapp3.1/System.Threading.Timer.xml", + "ref/netcoreapp3.1/System.Threading.dll", + "ref/netcoreapp3.1/System.Threading.pdb", + "ref/netcoreapp3.1/System.Threading.xml", + "ref/netcoreapp3.1/System.Transactions.Local.dll", + "ref/netcoreapp3.1/System.Transactions.Local.pdb", + "ref/netcoreapp3.1/System.Transactions.Local.xml", + "ref/netcoreapp3.1/System.Transactions.dll", + "ref/netcoreapp3.1/System.Transactions.pdb", + "ref/netcoreapp3.1/System.ValueTuple.dll", + "ref/netcoreapp3.1/System.ValueTuple.pdb", + "ref/netcoreapp3.1/System.Web.HttpUtility.dll", + "ref/netcoreapp3.1/System.Web.HttpUtility.pdb", + "ref/netcoreapp3.1/System.Web.HttpUtility.xml", + "ref/netcoreapp3.1/System.Web.dll", + "ref/netcoreapp3.1/System.Web.pdb", + "ref/netcoreapp3.1/System.Windows.dll", + "ref/netcoreapp3.1/System.Windows.pdb", + "ref/netcoreapp3.1/System.Xml.Linq.dll", + "ref/netcoreapp3.1/System.Xml.Linq.pdb", + "ref/netcoreapp3.1/System.Xml.ReaderWriter.dll", + "ref/netcoreapp3.1/System.Xml.ReaderWriter.pdb", + "ref/netcoreapp3.1/System.Xml.ReaderWriter.xml", + "ref/netcoreapp3.1/System.Xml.Serialization.dll", + "ref/netcoreapp3.1/System.Xml.Serialization.pdb", + "ref/netcoreapp3.1/System.Xml.XDocument.dll", + "ref/netcoreapp3.1/System.Xml.XDocument.pdb", + "ref/netcoreapp3.1/System.Xml.XDocument.xml", + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.dll", + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.pdb", + "ref/netcoreapp3.1/System.Xml.XPath.XDocument.xml", + "ref/netcoreapp3.1/System.Xml.XPath.dll", + "ref/netcoreapp3.1/System.Xml.XPath.pdb", + "ref/netcoreapp3.1/System.Xml.XPath.xml", + "ref/netcoreapp3.1/System.Xml.XmlDocument.dll", + "ref/netcoreapp3.1/System.Xml.XmlDocument.pdb", + "ref/netcoreapp3.1/System.Xml.XmlSerializer.dll", + "ref/netcoreapp3.1/System.Xml.XmlSerializer.pdb", + "ref/netcoreapp3.1/System.Xml.XmlSerializer.xml", + "ref/netcoreapp3.1/System.Xml.dll", + "ref/netcoreapp3.1/System.Xml.pdb", + "ref/netcoreapp3.1/System.dll", + "ref/netcoreapp3.1/System.pdb", + "ref/netcoreapp3.1/WindowsBase.dll", + "ref/netcoreapp3.1/WindowsBase.pdb", + "ref/netcoreapp3.1/WindowsBase.xml", + "ref/netcoreapp3.1/mscorlib.dll", + "ref/netcoreapp3.1/mscorlib.pdb", + "ref/netcoreapp3.1/netstandard.dll", + "ref/netcoreapp3.1/netstandard.pdb", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview3.19551.4": { + "sha512": "BU7m1FwolaGTh/+UP0SueOqXBNpcwROK7633HRNoZ9A2kBhdoi7nsKyjHLfae3GIxchV9Cxt9nDaeU2EdhPzxQ==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.4.7.0-preview3.19551.4.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v3.1": [ + "Microsoft.Private.CoreFx.NETCoreApp >= 4.7.0-preview3.19551.4", + "System.Runtime.CompilerServices.Unsafe >= 4.7.0-preview3.19551.4" + ] + }, + "packageFolders": { + "/home/z/Dev/coreclr-sec/.packages": {} + }, + "project": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+intrinsic/benchmark+intrinsic.csproj", + "projectName": "benchmark+intrinsic", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+intrinsic/benchmark+intrinsic.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+intrinsic/obj-linux-x86", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netcoreapp3.1": { + "dependencies": { + "Microsoft.Private.CoreFx.NETCoreApp": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Runtime.CompilerServices.Unsafe": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + } + }, + "imports": [ + "dnxcore50", + "netcoreapp1.1", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x86": { + "#import": [] + } + } + } +}
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+roslyn/obj-linux-x64/benchmark+roslyn.csproj.nuget.cache b/tests/src/JIT/config/benchmark+roslyn/obj-linux-x64/benchmark+roslyn.csproj.nuget.cache new file mode 100644 index 0000000000..5e4f04cb2b --- /dev/null +++ b/tests/src/JIT/config/benchmark+roslyn/obj-linux-x64/benchmark+roslyn.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "Dl0m3YrfKFO7IS4LHu4GP5L7p1fi0jo/9rJlT1LYCsvI+fTLEDbUqi53aq6fVwDuXApUdLePJ9kkh70Zp1Iknw==", + "success": true +}
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+roslyn/obj-linux-x64/benchmark+roslyn.csproj.nuget.dgspec.json b/tests/src/JIT/config/benchmark+roslyn/obj-linux-x64/benchmark+roslyn.csproj.nuget.dgspec.json new file mode 100644 index 0000000000..0c68b9462b --- /dev/null +++ b/tests/src/JIT/config/benchmark+roslyn/obj-linux-x64/benchmark+roslyn.csproj.nuget.dgspec.json @@ -0,0 +1,161 @@ +{ + "format": 1, + "restore": { + "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+roslyn/benchmark+roslyn.csproj": {} + }, + "projects": { + "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+roslyn/benchmark+roslyn.csproj": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+roslyn/benchmark+roslyn.csproj", + "projectName": "benchmark+roslyn", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+roslyn/benchmark+roslyn.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+roslyn/obj-linux-x64", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netstandard1.4" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netstandard1.4": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netstandard1.4": { + "dependencies": { + "Microsoft.CodeAnalysis.Compilers": { + "target": "Package", + "version": "[1.1.1, )" + }, + "Microsoft.Diagnostics.Tracing.TraceEvent": { + "target": "Package", + "version": "[2.0.43, )" + }, + "Microsoft.NETCore.Platforms": { + "target": "Package", + "version": "[3.1.0-preview3.19551.4, )" + }, + "System.Console": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Dynamic.Runtime": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.IO.FileSystem": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Numerics.Vectors": { + "target": "Package", + "version": "[4.4.0-preview2-25302-03, )" + }, + "System.Reflection": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.TypeExtensions": { + "target": "Package", + "version": "[4.4.0-preview2-25302-03, )" + }, + "System.Runtime": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Numerics": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Security.Cryptography.Algorithms": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Text.RegularExpressions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Tasks": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Tasks.Parallel": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Thread": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.performance.api": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.core": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.execution": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.metrics": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.runner.console": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.runner.utility": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x64": { + "#import": [] + } + } + } + } +}
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+roslyn/obj-linux-x64/benchmark+roslyn.csproj.nuget.g.props b/tests/src/JIT/config/benchmark+roslyn/obj-linux-x64/benchmark+roslyn.csproj.nuget.g.props new file mode 100644 index 0000000000..4e136fd2bc --- /dev/null +++ b/tests/src/JIT/config/benchmark+roslyn/obj-linux-x64/benchmark+roslyn.csproj.nuget.g.props @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> + <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> + <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> + <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageRoot> + <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageFolders> + <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.4.0</NuGetToolVersion> + </PropertyGroup> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> + <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)/xunit.runner.console/2.4.1-pre.build.4059/build/xunit.runner.console.props" Condition="Exists('$(NuGetPackageRoot)/xunit.runner.console/2.4.1-pre.build.4059/build/xunit.runner.console.props')" /> + <Import Project="$(NuGetPackageRoot)/microsoft.diagnostics.tracing.traceevent/2.0.43/build/Microsoft.Diagnostics.Tracing.TraceEvent.props" Condition="Exists('$(NuGetPackageRoot)/microsoft.diagnostics.tracing.traceevent/2.0.43/build/Microsoft.Diagnostics.Tracing.TraceEvent.props')" /> + <Import Project="$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.props" Condition="Exists('$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.props')" /> + </ImportGroup> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Pkgxunit_runner_console Condition=" '$(Pkgxunit_runner_console)' == '' ">/home/z/Dev/coreclr-sec/.packages/xunit.runner.console/2.4.1-pre.build.4059</Pkgxunit_runner_console> + <Pkgxunit_analyzers Condition=" '$(Pkgxunit_analyzers)' == '' ">/home/z/Dev/coreclr-sec/.packages/xunit.analyzers/0.10.0</Pkgxunit_analyzers> + <PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">/home/z/Dev/coreclr-sec/.packages/microsoft.codeanalysis.analyzers/1.1.0</PkgMicrosoft_CodeAnalysis_Analyzers> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+roslyn/obj-linux-x64/benchmark+roslyn.csproj.nuget.g.targets b/tests/src/JIT/config/benchmark+roslyn/obj-linux-x64/benchmark+roslyn.csproj.nuget.g.targets new file mode 100644 index 0000000000..96b54d803c --- /dev/null +++ b/tests/src/JIT/config/benchmark+roslyn/obj-linux-x64/benchmark+roslyn.csproj.nuget.g.targets @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> + <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.targets" Condition="Exists('$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.targets')" /> + </ImportGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+roslyn/obj-linux-x64/project.assets.json b/tests/src/JIT/config/benchmark+roslyn/obj-linux-x64/project.assets.json new file mode 100644 index 0000000000..9e016835e4 --- /dev/null +++ b/tests/src/JIT/config/benchmark+roslyn/obj-linux-x64/project.assets.json @@ -0,0 +1,8936 @@ +{ + "version": 3, + "targets": { + ".NETStandard,Version=v1.4": { + "CommandLineParser/2.1.1-beta": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-24027", + "System.Console": "4.0.0-rc2-24027", + "System.Diagnostics.Debug": "4.0.11-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.IO": "4.1.0-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Linq.Expressions": "4.0.11-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Reflection.Extensions": "4.0.1-rc2-24027", + "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime": "4.1.0-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027" + }, + "compile": { + "lib/netstandard1.5/CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard1.5/CommandLine.dll": {} + } + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "type": "package" + }, + "Microsoft.CodeAnalysis.Common/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "1.1.0", + "System.Collections.Immutable": "1.1.37", + "System.Reflection.Metadata": "1.1.0" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.Compilers/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "[1.1.1]", + "Microsoft.CodeAnalysis.VisualBasic": "[1.1.1]" + } + }, + "Microsoft.CodeAnalysis.CSharp/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.1.1]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CodeAnalysis.VisualBasic/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "1.1.1" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll": {} + } + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "type": "package", + "build": { + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.2.0-beta-24913-02": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.AppContext.dll": {} + } + }, + "System.Buffers/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Collections.Concurrent/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Diagnostics.Debug": "4.0.0", + "System.Globalization": "4.0.0", + "System.Linq": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Console/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Dynamic.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Linq": "4.4.0-beta-24913-02", + "System.Linq.Expressions": "4.4.0-beta-24913-02", + "System.ObjectModel": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Linq.Expressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Numerics.Vectors/4.4.0-preview2-25302-03": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "ref/netstandard1.0/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Numerics.Vectors.dll": {} + } + }, + "System.ObjectModel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Emit/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Collections.Immutable": "1.1.37", + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.InteropServices": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Text.Encoding.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.2/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/dotnet5.2/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/portable45-net45+win8+wpa81/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.4.0-preview2-25302-03": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp80+wpa81/_._": {} + } + }, + "System.Runtime.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime.Handles/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Numerics/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} + }, + "runtime": { + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.IO": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Security.Cryptography.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Text.Encoding/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.RegularExpressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Thread/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Thread.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.ValueTuple/4.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "[2.4.1-pre.build.4059]", + "xunit.core": "[2.4.1-pre.build.4059]" + } + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + } + }, + "xunit.analyzers/0.10.0": { + "type": "package" + }, + "xunit.assert/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.1/xunit.assert.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.assert.dll": {} + } + }, + "xunit.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.1-pre.build.4059]", + "xunit.extensibility.execution": "[2.4.1-pre.build.4059]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "[2.4.1-pre.build.4059]" + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + } + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "CommandLineParser": "2.1.1-beta", + "Microsoft.3rdpartytools.MarkdownLog": "0.10.0-alpha-experimental", + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.ValueTuple": "4.3.1", + "System.Xml.XmlSerializer": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015", + "xunit.performance.execution": "1.0.0-beta-build0015", + "xunit.performance.metrics": "1.0.0-beta-build0015", + "xunit.runner.utility": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + } + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + } + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit": "2.2.0-beta2-build3300", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + } + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Formatters": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + } + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "type": "package", + "build": { + "build/xunit.runner.console.props": {} + } + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll": {} + } + } + }, + ".NETStandard,Version=v1.4/linux-x64": { + "CommandLineParser/2.1.1-beta": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-24027", + "System.Console": "4.0.0-rc2-24027", + "System.Diagnostics.Debug": "4.0.11-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.IO": "4.1.0-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Linq.Expressions": "4.0.11-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Reflection.Extensions": "4.0.1-rc2-24027", + "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime": "4.1.0-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027" + }, + "compile": { + "lib/netstandard1.5/CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard1.5/CommandLine.dll": {} + } + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "type": "package" + }, + "Microsoft.CodeAnalysis.Common/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "1.1.0", + "System.Collections.Immutable": "1.1.37", + "System.Reflection.Metadata": "1.1.0" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.Compilers/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "[1.1.1]", + "Microsoft.CodeAnalysis.VisualBasic": "[1.1.1]" + } + }, + "Microsoft.CodeAnalysis.CSharp/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.1.1]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CodeAnalysis.VisualBasic/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "1.1.1" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll": {} + } + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "type": "package", + "build": { + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.2.0-beta-24913-02": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.unix.Microsoft.Win32.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "runtime.any.System.Collections/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tools/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.Tools.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "runtime.any.System.Globalization/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.dll": {} + } + }, + "runtime.any.System.Globalization.Calendars/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "runtime.any.System.IO/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.IO.dll": {} + } + }, + "runtime.any.System.Reflection/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.dll": {} + } + }, + "runtime.any.System.Reflection.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Primitives.dll": {} + } + }, + "runtime.any.System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Resources.ResourceManager.dll": {} + } + }, + "runtime.any.System.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.dll": {} + } + }, + "runtime.any.System.Runtime.Handles/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "runtime.any.System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.InteropServices.dll": {} + } + }, + "runtime.any.System.Text.Encoding/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "runtime.any.System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "runtime.any.System.Threading.Tasks/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "runtime.any.System.Threading.Timer/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Timer.dll": {} + } + }, + "runtime.linux-x64.runtime.native.System/4.4.0-beta-24913-02": { + "type": "package", + "native": { + "runtimes/linux-x64/native/System.Native.a": {}, + "runtimes/linux-x64/native/System.Native.so": {} + } + }, + "runtime.linux-x64.runtime.native.System.IO.Compression/4.4.0-beta-24913-02": { + "type": "package", + "native": { + "runtimes/linux-x64/native/System.IO.Compression.Native.so": {} + } + }, + "runtime.linux-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.4.0-beta-24913-02": { + "type": "package", + "native": { + "runtimes/linux-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {} + } + }, + "runtime.native.System/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "runtime.linux-x64.runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.linux-x64.runtime.native.System.IO.Compression": "4.4.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "runtime.linux-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.4.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.unix.Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.unix.System.Console/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Console.dll": {} + } + }, + "runtime.unix.System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.unix.System.IO.FileSystem/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Buffers": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "runtime.unix.System.Net.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "runtime.unix.System.Net.Sockets/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.Net.NameResolution": "4.4.0-beta-24913-02", + "System.Net.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.ThreadPool": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "runtime.unix.System.Private.Uri/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.0/System.Private.Uri.dll": {} + } + }, + "runtime.unix.System.Runtime.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.AppContext.dll": {} + } + }, + "System.Buffers/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Buffers.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Collections": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Collections.Concurrent/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Diagnostics.Debug": "4.0.0", + "System.Globalization": "4.0.0", + "System.Linq": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Console/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "runtime.unix.System.Console": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.unix.System.Diagnostics.Debug": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Diagnostics.Tools": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Diagnostics.Tracing": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Dynamic.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Linq": "4.4.0-beta-24913-02", + "System.Linq.Expressions": "4.4.0-beta-24913-02", + "System.ObjectModel": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Globalization": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization.Calendars": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.any.System.IO": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {} + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.unix.System.IO.FileSystem": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Linq.Expressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Net.NameResolution/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Net.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Security.Principal.Windows": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {} + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.unix.System.Net.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.unix.System.Net.Sockets": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Numerics.Vectors/4.4.0-preview2-25302-03": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "ref/netstandard1.0/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Numerics.Vectors.dll": {} + } + }, + "System.ObjectModel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Private.Uri/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "runtime.unix.System.Private.Uri": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + } + }, + "System.Reflection/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Reflection": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Emit/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Collections.Immutable": "1.1.37", + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.InteropServices": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Text.Encoding.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.2/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/dotnet5.2/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Reflection.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/portable45-net45+win8+wpa81/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.4.0-preview2-25302-03": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Resources.ResourceManager": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "runtime.any.System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp80+wpa81/_._": {} + } + }, + "System.Runtime.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.unix.System.Runtime.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime.Handles/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Runtime.Handles": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "runtime.any.System.Runtime.InteropServices": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "System.Runtime.Numerics/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} + }, + "runtime": { + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.Claims/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Security.Principal": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.IO": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Security.Cryptography.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.Win32.Primitives": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Security.Claims": "4.4.0-beta-24913-02", + "System.Security.Principal": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll": {} + } + }, + "System.Text.Encoding/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Text.Encoding": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "runtime.any.System.Text.Encoding.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.RegularExpressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Thread/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Threading.Timer": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.ValueTuple/4.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "[2.4.1-pre.build.4059]", + "xunit.core": "[2.4.1-pre.build.4059]" + } + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + } + }, + "xunit.analyzers/0.10.0": { + "type": "package" + }, + "xunit.assert/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.1/xunit.assert.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.assert.dll": {} + } + }, + "xunit.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.1-pre.build.4059]", + "xunit.extensibility.execution": "[2.4.1-pre.build.4059]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "[2.4.1-pre.build.4059]" + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + } + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "CommandLineParser": "2.1.1-beta", + "Microsoft.3rdpartytools.MarkdownLog": "0.10.0-alpha-experimental", + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.ValueTuple": "4.3.1", + "System.Xml.XmlSerializer": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015", + "xunit.performance.execution": "1.0.0-beta-build0015", + "xunit.performance.metrics": "1.0.0-beta-build0015", + "xunit.runner.utility": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + } + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + } + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit": "2.2.0-beta2-build3300", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + } + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Formatters": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + } + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "type": "package", + "build": { + "build/xunit.runner.console.props": {} + } + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll": {} + } + } + } + }, + "libraries": { + "CommandLineParser/2.1.1-beta": { + "sha512": "TmWNdtqLmtqLbwr0c9l1nEjjk39GB7wevl+1rxN907kjmdUUu5s470bWJFPEckfjYTnZ216xziW5fMXP35KVXg==", + "type": "package", + "path": "commandlineparser/2.1.1-beta", + "files": [ + ".nupkg.metadata", + "commandlineparser.2.1.1-beta.nupkg.sha512", + "commandlineparser.nuspec", + "lib/net40/CommandLine.XML", + "lib/net40/CommandLine.dll", + "lib/net45/CommandLine.XML", + "lib/net45/CommandLine.dll", + "lib/netstandard1.5/CommandLine.dll", + "lib/netstandard1.5/CommandLine.xml", + "readme.md" + ] + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "sha512": "BlzmPbwd0w2OGgXHFRWYu0tsJj6f6rAglvZ5q5hi71TGl6DDCZjP7WmMvcEFZi5MGGWkZ3VoPXQ4hJMMuGJF6A==", + "type": "package", + "path": "microsoft.3rdpartytools.markdownlog/0.10.0-alpha-experimental", + "files": [ + ".nupkg.metadata", + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll", + "microsoft.3rdpartytools.markdownlog.0.10.0-alpha-experimental.nupkg.sha512", + "microsoft.3rdpartytools.markdownlog.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "sha512": "HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/1.1.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.rtf", + "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", + "microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.1.1": { + "sha512": "r958nYjnl//vgjLljJLu52N2FJKlKYF5pqzyXM/C6K0w8uMcKIkJS4RXygqRBhW7ZjlsJXfiEX/JxLeDxMQUWQ==", + "type": "package", + "path": "microsoft.codeanalysis.common/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "microsoft.codeanalysis.common.1.1.1.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Compilers/1.1.1": { + "sha512": "tqCaCYlRDRra+vI7LRpDhbCdk1grzaNENCij8DOpAnTf8hR3WMcjGGD+PxWNkLFGJcfzNUbIFhb39onmVZI5KQ==", + "type": "package", + "path": "microsoft.codeanalysis.compilers/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "microsoft.codeanalysis.compilers.1.1.1.nupkg.sha512", + "microsoft.codeanalysis.compilers.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.1.1": { + "sha512": "HH8f/KK4fjTWNaKhHPgjF1Hm7lGMEB6A3DK+CUzW9ZbudZTFdNwb3Oa4qDZ25HWF+ifImSdu+1bLgqKCWRbsNQ==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "microsoft.codeanalysis.csharp.1.1.1.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeAnalysis.VisualBasic/1.1.1": { + "sha512": "QFOiWdSHCJwy1usS/7Ka+VAAhtXeEwQCDOd1iKGllGgcJuSiwtLEchxfOkXKsFtNq0P03mVEDRfUxc+6XHR60A==", + "type": "package", + "path": "microsoft.codeanalysis.visualbasic/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "lib/net45/Microsoft.CodeAnalysis.VisualBasic.dll", + "lib/net45/Microsoft.CodeAnalysis.VisualBasic.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.xml", + "microsoft.codeanalysis.visualbasic.1.1.1.nupkg.sha512", + "microsoft.codeanalysis.visualbasic.nuspec" + ] + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "sha512": "76ol4cZYvYiaiP5Vbows1ts2WDGpi/x2QxaoAToNCoGD+s2v7znzxPygPprXNYW4HmWgN8z3FsItIZb45X8OgQ==", + "type": "package", + "path": "microsoft.diagnostics.tracing.traceevent/2.0.43", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props", + "lib/native/amd64/KernelTraceControl.dll", + "lib/native/amd64/msdia140.dll", + "lib/native/x86/KernelTraceControl.Win61.dll", + "lib/native/x86/KernelTraceControl.dll", + "lib/native/x86/msdia140.dll", + "lib/net45/Dia2Lib.dll", + "lib/net45/Microsoft.Diagnostics.FastSerialization.dll", + "lib/net45/Microsoft.Diagnostics.FastSerialization.xml", + "lib/net45/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/net45/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/net45/OSExtensions.dll", + "lib/net45/TraceReloggerLib.dll", + "lib/netstandard1.6/Dia2Lib.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.xml", + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/netstandard1.6/OSExtensions.dll", + "lib/netstandard1.6/TraceReloggerLib.dll", + "lib/netstandard2.0/Dia2Lib.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.FastSerialization.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.FastSerialization.xml", + "lib/netstandard2.0/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/netstandard2.0/OSExtensions.dll", + "lib/netstandard2.0/TraceReloggerLib.dll", + "microsoft.diagnostics.tracing.traceevent.2.0.43.nupkg.sha512", + "microsoft.diagnostics.tracing.traceevent.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "sha512": "Clr2Jue6oyBlnsVf9g5qjoi06+QDYVq+U32buU9W+mRYeIFg4LXeJei1q6P/1niiKX8WIVo7KbBnqW80jVcOvw==", + "type": "package", + "path": "microsoft.netcore.platforms/3.1.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.3.1.0-preview3.19551.4.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.2.0-beta-24913-02": { + "sha512": "Z76BzrF4Nz0qVN676Tlmk3GdRxvlFDQZF6FoBRcfIkpEd07H4JLkuqryqTlbQ30X3XXUzAtsImuI2yW9eYb55g==", + "type": "package", + "path": "microsoft.netcore.targets/1.2.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.2.0-beta-24913-02.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "runtime.any.System.Collections/4.4.0-beta-24913-02": { + "sha512": "F2g9ysPsUdvdzg7PusjRSfO9lCYa8hAR2TxoT+WaJ3RqCjZUmrwzFRk6mkBVhb/jqoku1wh+DjkiVws4T/iI3A==", + "type": "package", + "path": "runtime.any.system.collections/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.dll", + "lib/netstandard1.3/System.Collections.dll", + "lib/netstandard1.7/System.Collections.dll", + "lib/uap10.1/System.Collections.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.collections.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.collections.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Collections.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Diagnostics.Tools/4.4.0-beta-24913-02": { + "sha512": "q9ex5GZda4qQWulQXw0mXxUpzYsIXA+fJsduZ4+76rFfkCTCAYnFqLg3pq1++oRe5utNE55kAWCXnPEfBjhgEw==", + "type": "package", + "path": "runtime.any.system.diagnostics.tools/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/netstandard1.3/System.Diagnostics.Tools.dll", + "lib/netstandard1.7/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tools.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.diagnostics.tools.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "sha512": "Eb5yKhR992tpieQ3k2U0Mmu7SzGodlBz7pPY4vVxrmLgO+t6bwye0Bw6+tcqO05gN3kDH47C/CKyh+ta41ULdw==", + "type": "package", + "path": "runtime.any.system.diagnostics.tracing/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "lib/netstandard1.5/System.Diagnostics.Tracing.dll", + "lib/netstandard1.7/System.Diagnostics.Tracing.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tracing.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.diagnostics.tracing.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Globalization/4.4.0-beta-24913-02": { + "sha512": "szVxxBBn8e+UDwJ+lg9C+XPSjvifllUzLuGrwhM9xPKdQUjJMrxd23yG49n0XM3q+pSIrOoHwLgWf3QDmt4PKw==", + "type": "package", + "path": "runtime.any.system.globalization/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Globalization.dll", + "lib/netstandard1.3/System.Globalization.dll", + "lib/netstandard1.7/System.Globalization.dll", + "lib/uap10.1/System.Globalization.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.globalization.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/aot/lib/uap101/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Globalization.Calendars/4.4.0-beta-24913-02": { + "sha512": "f+dLksC+5rTLnXj5ILLvAmrhvfuklzN3ba9g5O8hmbZd8zvSELF2FSw+GXbWsgqXEtjvgs4LvvH0UHkYm4nigA==", + "type": "package", + "path": "runtime.any.system.globalization.calendars/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net/_._", + "lib/netcore50/System.Globalization.Calendars.dll", + "lib/netstandard1.3/System.Globalization.Calendars.dll", + "lib/netstandard1.7/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.calendars.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.globalization.calendars.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.IO/4.4.0-beta-24913-02": { + "sha512": "jr+a+OUh/h6BIO/N+SXMDVbUln6dJIEPw/Ffaqj6aq+HmjMK1sr/aP6jw6sWRUU5hi91ppd3VMQ0xyk7Z3qBbA==", + "type": "package", + "path": "runtime.any.system.io/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.IO.dll", + "lib/netstandard1.5/System.IO.dll", + "lib/netstandard1.7/System.IO.dll", + "lib/uap10.1/System.IO.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.io.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.io.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Reflection/4.4.0-beta-24913-02": { + "sha512": "3kbe1bVviwUdBK5fN5O0646ZvpSMwMNl0uB68nf1aH9LA9EQo/xDwAbRmqbhY1wbN4ydH8PhsI2H9YNrnmRIRQ==", + "type": "package", + "path": "runtime.any.system.reflection/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.dll", + "lib/netstandard1.5/System.Reflection.dll", + "lib/netstandard1.7/System.Reflection.dll", + "lib/uap10.1/System.Reflection.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.reflection.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Reflection.Primitives/4.4.0-beta-24913-02": { + "sha512": "dEDCNyC3/P1Cl3+z5Gqhe6NZ20slv2biVjq1p8VInY9ETQTzK3QYBESPXkBlLgqG4xX+AXHIoEzWChXmj1KCYg==", + "type": "package", + "path": "runtime.any.system.reflection.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/netstandard1.3/System.Reflection.Primitives.dll", + "lib/netstandard1.7/System.Reflection.Primitives.dll", + "lib/portable45-net45+win8+wp8+wpa81/_._", + "lib/portable45-net45+win8+wpa81/_._", + "lib/uap10.1/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.reflection.primitives.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Reflection.Primitives.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "sha512": "oPqDrDykaRm+drr+dDXAveefrhawetYPTOETO84M2XeZsdgVR1YATecZun7PbbgUnSgvTR6UviiTnffEYIaIUg==", + "type": "package", + "path": "runtime.any.system.resources.resourcemanager/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/netstandard1.3/System.Resources.ResourceManager.dll", + "lib/netstandard1.7/System.Resources.ResourceManager.dll", + "lib/uap10.1/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.resources.resourcemanager.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.resources.resourcemanager.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Runtime/4.4.0-beta-24913-02": { + "sha512": "WszqTsye25+HP+UHSbqW5zW4khkQGA4fE9T/ZbPwzjA8t7+H7kc6RZEEaw3NmNBHVPCPQ2/rPs+DuVr2ely9dQ==", + "type": "package", + "path": "runtime.any.system.runtime/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.dll", + "lib/netcoreapp1.2/System.Runtime.dll", + "lib/netstandard1.5/System.Runtime.dll", + "lib/netstandard1.7/System.Runtime.dll", + "lib/uap10.1/System.Runtime.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.runtime.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Runtime.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Runtime.Handles/4.4.0-beta-24913-02": { + "sha512": "QVZWjaAvR/fAnWQ84CIfOL1bP3sROghLXJV2TVOrCSy3nGbKe8R0hJMMSiYRZ1cJSPFkXCR4ov9Giq2UWhap2w==", + "type": "package", + "path": "runtime.any.system.runtime.handles/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netstandard1.3/System.Runtime.Handles.dll", + "lib/netstandard1.7/System.Runtime.Handles.dll", + "lib/uap10.1/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.handles.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.runtime.handles.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "sha512": "fQhiPiPdc2MvT1Ly8qNhXXRhtOn80nxI7zN/Rzqa+kUBETdJzivUhs2KfaMA6CeArM0HlCZr9nkb5jPe3QSy0A==", + "type": "package", + "path": "runtime.any.system.runtime.interopservices/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "lib/netstandard1.5/System.Runtime.InteropServices.dll", + "lib/netstandard1.6/System.Runtime.InteropServices.dll", + "lib/netstandard1.7/System.Runtime.InteropServices.dll", + "lib/uap10.1/System.Runtime.InteropServices.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.interopservices.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.runtime.interopservices.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Runtime.InteropServices.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Text.Encoding/4.4.0-beta-24913-02": { + "sha512": "Xeqwi4XTKzoU787kjWuFmad+InOs+3GFQt7jYgTvZescP/O1QPOpXo2OBdohyM+G7krDarJufdl4S7fNvhWacQ==", + "type": "package", + "path": "runtime.any.system.text.encoding/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/netstandard1.3/System.Text.Encoding.dll", + "lib/netstandard1.7/System.Text.Encoding.dll", + "lib/uap10.1/System.Text.Encoding.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.text.encoding.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "sha512": "x32Af805w4cweMs7FNZCXHe/k2twQFE9l0/siz7P86e4PhHz6wc4BJ6I8AR3kxqBwtgSF7QPnLhN1yNxem8/MA==", + "type": "package", + "path": "runtime.any.system.text.encoding.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll", + "lib/netstandard1.7/System.Text.Encoding.Extensions.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.text.encoding.extensions.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Threading.Tasks/4.4.0-beta-24913-02": { + "sha512": "WfTJsPBqnWM3ba8Ua9xehHQbJW+RwcAu9LCWXuMhQAmsxssz15uycggqRdsS6hb2dRkZS9Jz3dtu3ns6Q7M2qw==", + "type": "package", + "path": "runtime.any.system.threading.tasks/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/netstandard1.3/System.Threading.Tasks.dll", + "lib/netstandard1.7/System.Threading.Tasks.dll", + "lib/uap10.1/System.Threading.Tasks.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.tasks.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.threading.tasks.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Threading.Tasks.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Threading.Timer/4.4.0-beta-24913-02": { + "sha512": "+IDpQUBdCovPqrD9tV2OlluOc+CNsDSs8GJ5WVa/ZBXCeVGX2qwZKO8a3nwnc81SpxO1zGlMo/Y2m6K0pDPnKQ==", + "type": "package", + "path": "runtime.any.system.threading.timer/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/netstandard1.3/System.Threading.Timer.dll", + "lib/netstandard1.7/System.Threading.Timer.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.timer.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.threading.timer.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.linux-x64.runtime.native.System/4.4.0-beta-24913-02": { + "sha512": "sssCMcBrty+rIkiBdaVoFN1c0llOnwW5ZFvj7PYomc0SZtsJXIZWruFeYCRmkT+qrcdjIJRyEPs0gQFwVkherg==", + "type": "package", + "path": "runtime.linux-x64.runtime.native.system/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.linux-x64.runtime.native.system.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.linux-x64.runtime.native.system.nuspec", + "runtimes/linux-x64/native/System.Native.a", + "runtimes/linux-x64/native/System.Native.so", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.linux-x64.runtime.native.System.IO.Compression/4.4.0-beta-24913-02": { + "sha512": "c56L47xwZfrqMp47oZ0Z6Nx+prd+maS1V8kRQEQnZfkis9T/aF+wM9+bXEDgS2/gl38BxZHD40jTOWeoHVVHSA==", + "type": "package", + "path": "runtime.linux-x64.runtime.native.system.io.compression/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.linux-x64.runtime.native.system.io.compression.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.linux-x64.runtime.native.system.io.compression.nuspec", + "runtimes/linux-x64/native/System.IO.Compression.Native.so", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.linux-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.4.0-beta-24913-02": { + "sha512": "HoSRBeHtdskdLmj0pVuNu49Ud0Zk489TDO65lH7KDygXic9yxEhug2peeZmpiZYjieZpFrisSq+7kk9YDNDLxQ==", + "type": "package", + "path": "runtime.linux-x64.runtime.native.system.security.cryptography.openssl/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.linux-x64.runtime.native.system.security.cryptography.openssl.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.linux-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/linux-x64/native/System.Security.Cryptography.Native.OpenSsl.so", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System/4.4.0-beta-24913-02": { + "sha512": "DtEYKhWPpIDQlWxyIWBiUK7Q3H2kPxVNLuOccIJY17tS1I4b0ya5FVc6WVj47Zg3SUvFuJhZzM7EqZsl5c4RWA==", + "type": "package", + "path": "runtime.native.system/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.native.system.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.4.0-beta-24913-02": { + "sha512": "J9TS90larMk0sgXUZQceCtbLzuYm3wHud/qBTLGYC5Yd6ntuZCifJxQd7QhM5jykR2u06aPCkKiv9bodz16tyw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.unix.Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "sha512": "ErIf7An6edPAgcSJcLZAYH8KEr2Aqi2H47K860JKyXLnwK0G047ksS8VtVg0v9z2cs3p+YTLTDD6dFLbg3RLpg==", + "type": "package", + "path": "runtime.unix.microsoft.win32.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.microsoft.win32.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.microsoft.win32.primitives.nuspec", + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Primitives.dll", + "runtimes/unix/lib/netstandard1.7/Microsoft.Win32.Primitives.dll", + "runtimes/unix/lib/uap10.1/Microsoft.Win32.Primitives.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Console/4.4.0-beta-24913-02": { + "sha512": "bVyMROOfEqc/7fRDnearZ6Jpeq/Psc+EFe/srfRQeVuFLMXT6cxaCvUk+4gHJisdSZQCleIdlIy4VoS/Tdvs7w==", + "type": "package", + "path": "runtime.unix.system.console/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.console.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.console.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Console.dll", + "runtimes/unix/lib/netstandard1.7/System.Console.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "sha512": "M95VkuwoXStqkCny6RJK1pECnFevEqkrvlDjyouEUXJneIB4qSH0LHH9rfrmhQosE+Z5m3KQIh1wCGneZ932Zg==", + "type": "package", + "path": "runtime.unix.system.diagnostics.debug/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.diagnostics.debug.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.diagnostics.debug.nuspec", + "runtimes/unix-corert/lib/netcoreapp1.2/System.Diagnostics.Debug.dll", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.Debug.dll", + "runtimes/unix/lib/netstandard1.7/System.Diagnostics.Debug.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.IO.FileSystem/4.4.0-beta-24913-02": { + "sha512": "4E0WH3D3D7uAHImAj3zQBRuYHSfUrCvdyv75+TuvTLw6RKPtoBR8Jq0mVAXIqshvrUfHCyBzv+cn5oY2BrBSRA==", + "type": "package", + "path": "runtime.unix.system.io.filesystem/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.io.filesystem.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.io.filesystem.nuspec", + "runtimes/unix/lib/netstandard1.3/System.IO.FileSystem.dll", + "runtimes/unix/lib/netstandard1.7/System.IO.FileSystem.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Net.Primitives/4.4.0-beta-24913-02": { + "sha512": "DBOmYuPH4khZftILHrquXZTda5PiTaBsWejwwtYtZsvUPZtF0nYmsjbCrOycbGWzS4gFZoU6vqD4dMbku4/ZEg==", + "type": "package", + "path": "runtime.unix.system.net.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.net.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.net.primitives.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Net.Primitives.dll", + "runtimes/unix/lib/netstandard1.7/System.Net.Primitives.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Net.Sockets/4.4.0-beta-24913-02": { + "sha512": "vl7Lz6dnOa+xi/WUUsZ1G3TFhroPkPrWKWVSUGg9E6mGcK5m2VqCbqcWwneYehgallbBMLOEmL7nsq+1XXCGWQ==", + "type": "package", + "path": "runtime.unix.system.net.sockets/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.net.sockets.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.net.sockets.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Net.Sockets.dll", + "runtimes/unix/lib/netstandard1.7/System.Net.Sockets.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Private.Uri/4.4.0-beta-24913-02": { + "sha512": "CM/S/SEyzccTOXKa+HAnUpAKlqspZRgfYbEQWKxTpm3iljXcj5aWuoaZFAav3Rts34FS6A7m+zCUgJeRKFGzPQ==", + "type": "package", + "path": "runtime.unix.system.private.uri/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.private.uri.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.private.uri.nuspec", + "runtimes/unix-corert/lib/netcoreapp1.2/System.Private.Uri.dll", + "runtimes/unix/lib/netstandard1.0/System.Private.Uri.dll", + "runtimes/unix/lib/uap10.1/System.Private.Uri.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Runtime.Extensions/4.4.0-beta-24913-02": { + "sha512": "SbmnGceBoHRqOLVdRdgdOd9UKizKVmwlBpbww67Hju5rUbMdOv4AdkoHrFm+Ee7kO0xHumYHlTuenmXmuFRW4Q==", + "type": "package", + "path": "runtime.unix.system.runtime.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.runtime.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.runtime.extensions.nuspec", + "runtimes/unix-corert/lib/netcoreapp1.2/System.Runtime.Extensions.dll", + "runtimes/unix/lib/netstandard1.5/System.Runtime.Extensions.dll", + "runtimes/unix/lib/netstandard1.7/System.Runtime.Extensions.dll", + "runtimes/unix/lib/uap10.1/System.Runtime.Extensions.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.3.0": { + "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "type": "package", + "path": "system.buffers/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/.xml", + "lib/netstandard1.1/System.Buffers.dll", + "system.buffers.4.3.0.nupkg.sha512", + "system.buffers.nuspec" + ] + }, + "System.Buffers/4.4.0-beta-24913-02": { + "sha512": "759YUTLvoV/0Y8oIp+yiPruR79AB+g5q+DqhDfNBjX1UxG7mAiemru5zEKMHEUBmj19nuDpwO1VXeFw/LfqYjw==", + "type": "package", + "path": "system.buffers/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netcoreapp1.1/.xml", + "lib/netcoreapp1.1/System.Buffers.dll", + "lib/netstandard1.1/.xml", + "lib/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.dll", + "system.buffers.4.4.0-beta-24913-02.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.4.0-beta-24913-02": { + "sha512": "Y9+bO37c8uVvXqkNGm90t2geVYeaEkWjMTgOkq6CkOOAtF5BpqKTvwnelXWP2pmL5fSqAMvPhsN/UXkTTxgMRA==", + "type": "package", + "path": "system.collections/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Collections.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Collections.dll", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netcoreapp1.1/System.Collections.dll", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/netstandard1.7/System.Collections.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Collections.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.4.0-beta-24913-02.nupkg.sha512", + "system.collections.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections.Concurrent/4.4.0-beta-24913-02": { + "sha512": "eky+QV4xCtubhbJk62uICQ4iygDnhoU7ojHRZbog5bqhjGWHtzvLdLu9nBu7YPKh7GDzk2ZHfL9uNECo8kKcdA==", + "type": "package", + "path": "system.collections.concurrent/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/netstandard1.7/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netcoreapp1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.4.0-beta-24913-02.nupkg.sha512", + "system.collections.concurrent.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections.Immutable/1.1.37": { + "sha512": "fTpqwZYBzoklTT+XjTRK8KxvmrGkYHzBiylCcKyQcxiOM8k+QvhNBxRvFHDWzy4OEP5f8/9n+xQ9mEgEXY+muA==", + "type": "package", + "path": "system.collections.immutable/1.1.37", + "files": [ + ".nupkg.metadata", + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.1.1.37.nupkg.sha512", + "system.collections.immutable.nuspec" + ] + }, + "System.Console/4.4.0-beta-24913-02": { + "sha512": "AiRso5v4Rbn6JgfRevPTZ0q+bpkfuAGQtkk4Aiuu+np3c4mEdHrW/ippOuSmIQJmvyHVEg9TQxpjrjcZUhLvkw==", + "type": "package", + "path": "system.console/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/net463/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/net463/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/netstandard1.7/System.Console.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.4.0-beta-24913-02.nupkg.sha512", + "system.console.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "sha512": "1JrMoPGopozBemABZVZvaXpPjXPqboGsxyZE+r8iuaJuU6nCVpxIvZf9LTkDZdXvdzA6UN8gNyo5JVkTpDRrtQ==", + "type": "package", + "path": "system.diagnostics.debug/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Diagnostics.Debug.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.7/System.Diagnostics.Debug.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net463/System.Diagnostics.Debug.dll", + "system.diagnostics.debug.4.4.0-beta-24913-02.nupkg.sha512", + "system.diagnostics.debug.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "sha512": "dupkxZ5nLUDX8e9OqQ1XqPJM54UZo3XGRiFeqdF/a59R90KbVSmmhqT4RPwa92fi4Unr401DQXMDBEVLLmJo9w==", + "type": "package", + "path": "system.diagnostics.tracing/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.7/System.Diagnostics.Tracing.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.4.0-beta-24913-02.nupkg.sha512", + "system.diagnostics.tracing.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Dynamic.Runtime/4.4.0-beta-24913-02": { + "sha512": "mbTmaXJ97fHhsbgzaZILTYCp1roBgOXoHhaN1hTmR/To9EEKNGERX61hVP099pAACklnPyrVrEFBZdEEAkXzDg==", + "type": "package", + "path": "system.dynamic.runtime/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Dynamic.Runtime.dll", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.dll", + "lib/netstandard1.7/System.Dynamic.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.7/System.Dynamic.Runtime.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.4.0-beta-24913-02.nupkg.sha512", + "system.dynamic.runtime.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Globalization/4.4.0-beta-24913-02": { + "sha512": "KxBYuqGY1P0LBAn1uXLyiYf3qXiNlhDCfCtLBemYA7mouGqqs+YPgYo2WuI5pqGU6VjAWiQvAT6PeNhofDvTHw==", + "type": "package", + "path": "system.globalization/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Globalization.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Globalization.dll", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/netstandard1.7/System.Globalization.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Globalization.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.4.0-beta-24913-02.nupkg.sha512", + "system.globalization.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.IO/4.4.0-beta-24913-02": { + "sha512": "BEqLHSTjhsWFdxz0q5OYlFc2Ic7NcWbKrn13IulLnRpF9yJClv3W2CxSHPq2IB48qKvODoYO9wEKax74+JK8eg==", + "type": "package", + "path": "system.io/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netcoreapp1.1/System.IO.dll", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/netstandard1.7/System.IO.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.IO.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.4.0-beta-24913-02.nupkg.sha512", + "system.io.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.4.0-beta-24913-02": { + "sha512": "DvhfpfWgOwoxyjPNYKhMV0xZuqGdznnaC7aIMzBc2oh+u19jZrloGl11P2DnFKJLfsth5DPLvTMxXmvKLeuykw==", + "type": "package", + "path": "system.io.filesystem/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/net463/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/net463/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/netstandard1.7/System.IO.FileSystem.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.4.0-beta-24913-02.nupkg.sha512", + "system.io.filesystem.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.FileSystem.Primitives/4.4.0-beta-24913-02": { + "sha512": "wRiqs3kiUczfE2pBubg2o3u06yQeUeqZruZG8ckw5/QJHRMCcnSaf//dyhJs+Qnq7uOYVoI2p8rEnYjm6w9omw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/net463/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.7/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/net463/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.7/System.IO.FileSystem.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "system.io.filesystem.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq/4.4.0-beta-24913-02": { + "sha512": "bjnCiY6U3f9k7fH/R3IQohZniRlLB3MdQ59n0nH8oa26YCFZO+OgjdVbSj67RgVpxupYLzXCZ80li32HcL4qdQ==", + "type": "package", + "path": "system.linq/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netcoreapp1.1/System.Linq.dll", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.4.0-beta-24913-02.nupkg.sha512", + "system.linq.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq.Expressions/4.4.0-beta-24913-02": { + "sha512": "FGRSqzfppwrXJSO+91Bi3BEOV1xejk/VHOL3bZRJYCshZ67t8s5OeOk8ywh96Xi12+RFIsXkIzJYBBYC3xV/ow==", + "type": "package", + "path": "system.linq.expressions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/netstandard1.7/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.7/System.Linq.Expressions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.4.0-beta-24913-02.nupkg.sha512", + "system.linq.expressions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.NameResolution/4.4.0-beta-24913-02": { + "sha512": "xTSaAEadOMDmmGLv60VMP1GtqMq++l23ld96Rg3X/Sphde1FFLB9nUetcoWx7VwfC5sJ1m70YprLKXDS4PNG8A==", + "type": "package", + "path": "system.net.nameresolution/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.NameResolution.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.xml", + "ref/netstandard1.3/de/System.Net.NameResolution.xml", + "ref/netstandard1.3/es/System.Net.NameResolution.xml", + "ref/netstandard1.3/fr/System.Net.NameResolution.xml", + "ref/netstandard1.3/it/System.Net.NameResolution.xml", + "ref/netstandard1.3/ja/System.Net.NameResolution.xml", + "ref/netstandard1.3/ko/System.Net.NameResolution.xml", + "ref/netstandard1.3/ru/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", + "runtimes/win/lib/net46/System.Net.NameResolution.dll", + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll", + "system.net.nameresolution.4.4.0-beta-24913-02.nupkg.sha512", + "system.net.nameresolution.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.Numerics.Vectors/4.4.0-preview2-25302-03": { + "sha512": "8QCHEbxpQaW7K3HKiPxR50dy2XysCe+7ihR7C6GCTSg8ZKWZiG8ESQfWTiDtwh8rL3NANrHVf6snjzeQZZpcog==", + "type": "package", + "path": "system.numerics.vectors/4.4.0-preview2-25302-03", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/netstandard2.0/System.Numerics.Vectors.dll", + "lib/netstandard2.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", + "lib/uap10.1/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", + "ref/netstandard2.0/System.Numerics.Vectors.dll", + "ref/uap10.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.numerics.vectors.4.4.0-preview2-25302-03.nupkg.sha512", + "system.numerics.vectors.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ObjectModel/4.4.0-beta-24913-02": { + "sha512": "7fImkhTugA/dsFg/prA4UH7CoP4xmf7Brd5/v+dUA62mND9foQQnTOq0xSCOVZ6b25sy0kKqxLUtekZvRIMlkQ==", + "type": "package", + "path": "system.objectmodel/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.ObjectModel.dll", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/netstandard1.7/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netcoreapp1.1/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.7/System.ObjectModel.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.4.0-beta-24913-02.nupkg.sha512", + "system.objectmodel.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Private.Uri/4.4.0-beta-24913-02": { + "sha512": "P5WV/+fFObWRGhcbiUIx+23/hz4k/x6xFoePjam1t6xvKw+E1E4KkM8O2sRkZQ0h8i7ATr04oCi5jNnzg2+idg==", + "type": "package", + "path": "system.private.uri/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "system.private.uri.4.4.0-beta-24913-02.nupkg.sha512", + "system.private.uri.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection/4.4.0-beta-24913-02": { + "sha512": "BYjVZSHD4JDmhn5LueNSF16qU8WA6V2YAakX+q+U9lAlj/B+gV+l9vO2RkJjzexvDcZLluFzIUdpWDGtOj95wA==", + "type": "package", + "path": "system.reflection/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/netstandard1.7/System.Reflection.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Reflection.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit/4.4.0-beta-24913-02": { + "sha512": "8t9c/WJwVW4lM4furhRKIGDH4YIMnqWeo/tXktHJpczi6SiBpWfi+RymwRVbbxrPy7+b+jgtspwM0AHizm8hRg==", + "type": "package", + "path": "system.reflection.emit/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.emit.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit.ILGeneration/4.4.0-beta-24913-02": { + "sha512": "StjC21V2SztX1QUCMlwE1QfXXJhmmNJVu07DDLqj/fn6F23tIHB+EDcroeA7QKRQbfarUxL4MzZAJqEhcfPqYA==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Extensions/4.4.0-beta-24913-02": { + "sha512": "6f9M3xv5HkaZEbZLsjRSEHekr1bbEFUbtpr/8NHGJ3cwjdUmfirIwT3i69VxPy0xx9nj8OLbfGitQcPOUsK/sA==", + "type": "package", + "path": "system.reflection.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Reflection.Extensions.dll", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/netstandard1.3/System.Reflection.Extensions.dll", + "lib/netstandard1.7/System.Reflection.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.1/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.7/System.Reflection.Extensions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Reflection.Extensions.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll", + "runtimes/aot/lib/uap10.1/System.Reflection.Extensions.dll", + "system.reflection.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Metadata/1.1.0": { + "sha512": "RLIE4sSt2zngMLuqM6YmxBH99mTumtT4DNZE4+msfEaInUP5iCLQT+BHPl+2cjSAP1pdALyAjLB8RtCB+WGGWQ==", + "type": "package", + "path": "system.reflection.metadata/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/dotnet5.2/System.Reflection.Metadata.dll", + "lib/dotnet5.2/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.1.1.0.nupkg.sha512", + "system.reflection.metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.4.0-beta-24913-02": { + "sha512": "qR0QeMteCI5xqH473N019aiA3kSrUYIsxHb5yD8EMeEY9ZQpDe7eETxaxm9mDtZsk5ykm3fboDda8cAsHqM5+w==", + "type": "package", + "path": "system.reflection.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Reflection.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/portable45-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.7/System.Reflection.Primitives.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/portable45-net45+win8+wpa81/_._", + "ref/uap10.1/System.Reflection.Primitives.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.TypeExtensions/4.4.0-preview2-25302-03": { + "sha512": "GSFwBW4h06Y2B14gBSQn2mXOClBEuKnycjdzvhsrLY+mQPieCtsP4AiOC95PV/8zwMM3rXLfjguERttLuKkibA==", + "type": "package", + "path": "system.reflection.typeextensions/4.4.0-preview2-25302-03", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net461/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netcoreapp1.0/System.Reflection.TypeExtensions.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/netstandard2.0/System.Reflection.TypeExtensions.dll", + "lib/uap10.1/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net461/System.Reflection.TypeExtensions.dll", + "ref/net461/System.Reflection.TypeExtensions.xml", + "ref/net461/de/System.Reflection.TypeExtensions.xml", + "ref/net461/es/System.Reflection.TypeExtensions.xml", + "ref/net461/fr/System.Reflection.TypeExtensions.xml", + "ref/net461/it/System.Reflection.TypeExtensions.xml", + "ref/net461/ja/System.Reflection.TypeExtensions.xml", + "ref/net461/ko/System.Reflection.TypeExtensions.xml", + "ref/net461/ru/System.Reflection.TypeExtensions.xml", + "ref/net461/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/net461/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/System.Reflection.TypeExtensions.dll", + "ref/netstandard2.0/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/uap10.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "runtimes/aot/lib/uap10.1/_._", + "runtimes/win/lib/net461/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.4.0-preview2-25302-03.nupkg.sha512", + "system.reflection.typeextensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "sha512": "zbswj86i6yoQyMybsHm16OPp5/uoWqTJX0X7QuguoBpOdBc7XJ9H68dvuRb4VUKh/WtbvUiftn2PnLCDC5gZxA==", + "type": "package", + "path": "system.resources.resourcemanager/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Resources.ResourceManager.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.7/System.Resources.ResourceManager.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.4.0-beta-24913-02.nupkg.sha512", + "system.resources.resourcemanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime/4.4.0-beta-24913-02": { + "sha512": "OjwRltLPQUMt7uJ4vQklRo1fFK9WsL10GMyFKB+SdZknqXzxpM3zThIjMFtiQJtf8hmXTQU8H0DkMWinTHroJw==", + "type": "package", + "path": "system.runtime/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netcoreapp1.1/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/netstandard1.7/System.Runtime.dll", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/uap10.1/System.Runtime.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Extensions/4.4.0-beta-24913-02": { + "sha512": "v1XLBAT4zvJdo4pP6wXvasll7+0v/B0X+TNueBfqsprfP0xGPOm8TOUB2ln/djZrnz/AWSOLlevjIFs6PhJD+Q==", + "type": "package", + "path": "system.runtime.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netcoreapp1.1/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.7/System.Runtime.Extensions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Runtime.Extensions.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/uap10.1/System.Runtime.Extensions.dll", + "runtimes/win/lib/net461/System.Runtime.Extensions.dll", + "system.runtime.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Handles/4.4.0-beta-24913-02": { + "sha512": "5Z5jTG+Lx8ttF1ukhKhF5cMyNbfZqsYhp8HFg6sHZojo0vPfeXYce0eRHiWkPxcZ1yHVz6V/l7iBPJIDR4nC8Q==", + "type": "package", + "path": "system.runtime.handles/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/net463/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/net463/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/netstandard1.7/System.Runtime.Handles.dll", + "ref/uap10.1/System.Runtime.Handles.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.handles.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "sha512": "T7Tv7MQGriQdoTjyztjsICDhQrsoIE4DH5yu+UlUnH5Ze+h3SRTJSdnOsXVnsA5bjq7jDTm7aFJM47KYBYi1vA==", + "type": "package", + "path": "system.runtime.interopservices/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.7/System.Runtime.InteropServices.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/uap10.1/System.Runtime.InteropServices.dll", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.interopservices.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.4.0-beta-24913-02": { + "sha512": "fdLF4k7ByLmJsRvifhthFQ+y4Fb+SmOeKlcbagzBKhKORu+JFnj9P3eGHIIcTXlzIrqPNhCvqoaGCNJBwPAWXA==", + "type": "package", + "path": "system.runtime.numerics/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Runtime.Numerics.dll", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/netstandard1.7/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.7/System.Runtime.Numerics.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.numerics.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==", + "type": "package", + "path": "system.runtime.serialization.formatters/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Runtime.Serialization.Formatters.dll", + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Runtime.Serialization.Formatters.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.serialization.formatters.4.3.0.nupkg.sha512", + "system.runtime.serialization.formatters.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Primitives.dll", + "lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "system.runtime.serialization.primitives.4.3.0.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec" + ] + }, + "System.Security.Claims/4.4.0-beta-24913-02": { + "sha512": "/PPqq7MEKJvP8kE/ud4uzqvi4gYQICRMwQV2+hxJkd2A9vKyGvDmpq2HbbMPO6U2lMTwdMUmdUm7HgEoCcy6kw==", + "type": "package", + "path": "system.security.claims/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/net463/System.Security.Claims.dll", + "lib/netstandard1.3/System.Security.Claims.dll", + "lib/netstandard1.7/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/net463/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.xml", + "ref/netstandard1.3/de/System.Security.Claims.xml", + "ref/netstandard1.3/es/System.Security.Claims.xml", + "ref/netstandard1.3/fr/System.Security.Claims.xml", + "ref/netstandard1.3/it/System.Security.Claims.xml", + "ref/netstandard1.3/ja/System.Security.Claims.xml", + "ref/netstandard1.3/ko/System.Security.Claims.xml", + "ref/netstandard1.3/ru/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hans/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hant/System.Security.Claims.xml", + "ref/netstandard1.7/System.Security.Claims.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.claims.4.4.0-beta-24913-02.nupkg.sha512", + "system.security.claims.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Algorithms/4.4.0-beta-24913-02": { + "sha512": "hDt9rI+9j/bhkKKMQ4mAZO3Z1hd3VpUW44aMJ/9RI43ONmwaQQBmrV3UK+xFXUhRvmRFNDXfd1aswsiGLWjvYw==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.7/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/osx/lib/netstandard1.7/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.7/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.7/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.4.0-beta-24913-02.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.4.0-beta-24913-02": { + "sha512": "xVidqKLfhOomdqKs84jltdeCLDGT9AkA0zhQCf9W+OcMn1yZ0hkHYZovVaVwFuFvqa2bKqyKAxzUlduaQzGKig==", + "type": "package", + "path": "system.security.cryptography.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/net463/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.7/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/net463/System.Security.Cryptography.Primitives.dll", + "ref/netcoreapp1.1/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.7/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "system.security.cryptography.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Principal/4.4.0-beta-24913-02": { + "sha512": "OSfvB2svUkTf3TgH2NRsZT+EOqSt57SgjQ7fahG2ahH/JFHLxfNdCnYV8l1FFjAJzHcCS6ExQvhq0wIAoa/wmA==", + "type": "package", + "path": "system.security.principal/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Security.Principal.dll", + "lib/netcore50/System.Security.Principal.dll", + "lib/netstandard1.0/System.Security.Principal.dll", + "lib/netstandard1.7/System.Security.Principal.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.1/System.Security.Principal.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/netcore50/de/System.Security.Principal.xml", + "ref/netcore50/es/System.Security.Principal.xml", + "ref/netcore50/fr/System.Security.Principal.xml", + "ref/netcore50/it/System.Security.Principal.xml", + "ref/netcore50/ja/System.Security.Principal.xml", + "ref/netcore50/ko/System.Security.Principal.xml", + "ref/netcore50/ru/System.Security.Principal.xml", + "ref/netcore50/zh-hans/System.Security.Principal.xml", + "ref/netcore50/zh-hant/System.Security.Principal.xml", + "ref/netstandard1.0/System.Security.Principal.dll", + "ref/netstandard1.0/System.Security.Principal.xml", + "ref/netstandard1.0/de/System.Security.Principal.xml", + "ref/netstandard1.0/es/System.Security.Principal.xml", + "ref/netstandard1.0/fr/System.Security.Principal.xml", + "ref/netstandard1.0/it/System.Security.Principal.xml", + "ref/netstandard1.0/ja/System.Security.Principal.xml", + "ref/netstandard1.0/ko/System.Security.Principal.xml", + "ref/netstandard1.0/ru/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hans/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hant/System.Security.Principal.xml", + "ref/netstandard1.7/System.Security.Principal.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Security.Principal.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/uap10.1/System.Security.Principal.dll", + "system.security.principal.4.4.0-beta-24913-02.nupkg.sha512", + "system.security.principal.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.4.0-beta-24913-02": { + "sha512": "ZHYzVfmY8hv2VGl8zLEI5tG3m5tZgoToMNq84ZZR3zUpFjKMaKVviIN+1r+5C+f6Xyw7T45sGMmdMya69P+bnA==", + "type": "package", + "path": "system.security.principal.windows/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net463/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net463/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard1.7/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netstandard1.7/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net463/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.7/System.Security.Principal.Windows.dll", + "system.security.principal.windows.4.4.0-beta-24913-02.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.4.0-beta-24913-02": { + "sha512": "+IM39s4C1QMr/qKpiVlLOr+FIfyXVTe7tpIx39hoTcAvZY+sXhMMS5ErJeJdaSMZgL5ZyGzcuxkfeAYDKloW6w==", + "type": "package", + "path": "system.text.encoding/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.Encoding.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.7/System.Text.Encoding.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Text.Encoding.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.4.0-beta-24913-02.nupkg.sha512", + "system.text.encoding.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "sha512": "jK3sE8t8Ngi1hSKmPI1RGXaqdtCT6dPPvfrFWDn8u45r6Zh4RJk4962v6AU5saxkssCfTiVhqDK+Drageb5mJA==", + "type": "package", + "path": "system.text.encoding.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.Encoding.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.7/System.Text.Encoding.Extensions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.text.encoding.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.RegularExpressions/4.4.0-beta-24913-02": { + "sha512": "eb/QjBezP1/UbivTA+xpNakEST/xnm1/yc563KRUINfsZ+Owz3By8ofAV2S94usp087bWls5v1sX4rZAjuTuxg==", + "type": "package", + "path": "system.text.regularexpressions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/netstandard1.7/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.7/System.Text.RegularExpressions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.4.0-beta-24913-02.nupkg.sha512", + "system.text.regularexpressions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading/4.4.0-beta-24913-02": { + "sha512": "IDvvo0zC8/kGPUnj2l79COn+vizKPxDoJ9BcLMo5R8H7CImr4t98kZyChhY1lu2PZfxo/t+4QrtXDgZflWnPkw==", + "type": "package", + "path": "system.threading/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Threading.dll", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/netstandard1.7/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Threading.dll", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/netstandard1.7/System.Threading.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks/4.4.0-beta-24913-02": { + "sha512": "tphb/t923mWZs75EwmJg6CEB5fgC2YRItN37XvPjANv9FmCxo9THV+eD8/Fdw2SxeyZ9nJtgupbk076ZAvTV1A==", + "type": "package", + "path": "system.threading.tasks/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Threading.Tasks.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.7/System.Threading.Tasks.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Threading.Tasks.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.tasks.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", + "type": "package", + "path": "system.threading.tasks.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "system.threading.tasks.extensions.4.3.0.nupkg.sha512", + "system.threading.tasks.extensions.nuspec" + ] + }, + "System.Threading.Tasks.Parallel/4.4.0-beta-24913-02": { + "sha512": "osOWN3xRHMIqXMB7YNYiMLxsl9orwUrxA+WB0ujcYXjoORyrel7L1iCz5mLdZT0o4AMH0Ps6GSIM0pYtm+PVOQ==", + "type": "package", + "path": "system.threading.tasks.parallel/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.Parallel.dll", + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.Parallel.dll", + "ref/netcore50/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/de/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/es/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/it/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll", + "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.parallel.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.tasks.parallel.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Thread/4.4.0-beta-24913-02": { + "sha512": "kO2WQOh0cJd6Yoc9JJAeBWkuKHeI/Tgg0nPyPUIihsGDTzc3G0uGeEjF4MjBi/EKly9objpgAP9sLrGIgUt3fw==", + "type": "package", + "path": "system.threading.thread/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.Thread.dll", + "lib/net461/System.Threading.Thread.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.Thread.dll", + "lib/netstandard1.7/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.Thread.dll", + "ref/net461/System.Threading.Thread.dll", + "ref/netstandard1.3/System.Threading.Thread.dll", + "ref/netstandard1.3/System.Threading.Thread.xml", + "ref/netstandard1.3/de/System.Threading.Thread.xml", + "ref/netstandard1.3/es/System.Threading.Thread.xml", + "ref/netstandard1.3/fr/System.Threading.Thread.xml", + "ref/netstandard1.3/it/System.Threading.Thread.xml", + "ref/netstandard1.3/ja/System.Threading.Thread.xml", + "ref/netstandard1.3/ko/System.Threading.Thread.xml", + "ref/netstandard1.3/ru/System.Threading.Thread.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml", + "ref/netstandard1.7/System.Threading.Thread.dll", + "ref/uap10.1/System.Threading.Thread.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/uap10.1/System.Threading.Thread.dll", + "runtimes/unix/lib/netstandard1.7/System.Threading.Thread.dll", + "runtimes/unix/lib/uap10.1/System.Threading.Thread.dll", + "runtimes/win/lib/netstandard1.7/System.Threading.Thread.dll", + "runtimes/win/lib/uap10.1/System.Threading.Thread.dll", + "system.threading.thread.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.thread.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.ThreadPool/4.4.0-beta-24913-02": { + "sha512": "lD4kymw3NHChTiqHFH9zxVvfTY8uLBy34KdBP661x8FIeiN78DwQEKMVZOQ2zZ/ThmARWxG4E7YzH1NOkJacGQ==", + "type": "package", + "path": "system.threading.threadpool/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.ThreadPool.dll", + "lib/net463/System.Threading.ThreadPool.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.ThreadPool.dll", + "lib/netstandard1.7/System.Threading.ThreadPool.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.ThreadPool.dll", + "ref/net463/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/de/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/es/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/it/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml", + "ref/netstandard1.7/System.Threading.ThreadPool.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.threadpool.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.threadpool.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.ValueTuple/4.3.1": { + "sha512": "xzDmg26Wb2x2rFDjwziaMYQJqxhrK+b4OUC008o7CnZhUMb2p5XfwgOgAQ/WlKhqxMUSDWRUm5/lNTKdh27pJA==", + "type": "package", + "path": "system.valuetuple/4.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netstandard1.0/.xml", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/.xml", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.3.1.nupkg.sha512", + "system.valuetuple.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.3.0": { + "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "type": "package", + "path": "system.xml.xmldocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.3.0.nupkg.sha512", + "system.xml.xmldocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.3.0": { + "sha512": "MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==", + "type": "package", + "path": "system.xml.xmlserializer/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "lib/netstandard1.3/System.Xml.XmlSerializer.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XmlSerializer.dll", + "ref/netcore50/System.Xml.XmlSerializer.xml", + "ref/netcore50/de/System.Xml.XmlSerializer.xml", + "ref/netcore50/es/System.Xml.XmlSerializer.xml", + "ref/netcore50/fr/System.Xml.XmlSerializer.xml", + "ref/netcore50/it/System.Xml.XmlSerializer.xml", + "ref/netcore50/ja/System.Xml.XmlSerializer.xml", + "ref/netcore50/ko/System.Xml.XmlSerializer.xml", + "ref/netcore50/ru/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/System.Xml.XmlSerializer.dll", + "ref/netstandard1.0/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/de/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/es/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/it/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/System.Xml.XmlSerializer.dll", + "ref/netstandard1.3/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/de/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/es/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/it/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "system.xml.xmlserializer.4.3.0.nupkg.sha512", + "system.xml.xmlserializer.nuspec" + ] + }, + "xunit/2.4.1-pre.build.4059": { + "sha512": "Kt50VVI9yqbPLPICi1J2Sl2zoidhyMqbT+ywCSINDDXCJhVOXVBoE/1geWui5Sppx8Cv5U0DmYCLxveaOB0mLw==", + "type": "package", + "path": "xunit/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "xunit.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.nuspec" + ] + }, + "xunit.abstractions/2.0.3": { + "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", + "type": "package", + "path": "xunit.abstractions/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/netstandard1.0/xunit.abstractions.dll", + "lib/netstandard1.0/xunit.abstractions.xml", + "lib/netstandard2.0/xunit.abstractions.dll", + "lib/netstandard2.0/xunit.abstractions.xml", + "xunit.abstractions.2.0.3.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.analyzers/0.10.0": { + "sha512": "4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg==", + "type": "package", + "path": "xunit.analyzers/0.10.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/xunit.analyzers.dll", + "tools/install.ps1", + "tools/uninstall.ps1", + "xunit.analyzers.0.10.0.nupkg.sha512", + "xunit.analyzers.nuspec" + ] + }, + "xunit.assert/2.4.1-pre.build.4059": { + "sha512": "PrfmhpgBTilGWP4DC6Q2FV17TEfTpnCARMjYNMQvUF1IFV5DhXNU5ChC0JeL17ctp89krn4Pld4/Wiuq4ILMxw==", + "type": "package", + "path": "xunit.assert/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.1/xunit.assert.dll", + "lib/netstandard1.1/xunit.assert.xml", + "lib/netstandard2.0/xunit.assert.dll", + "lib/netstandard2.0/xunit.assert.xml", + "xunit.assert.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.core/2.4.1-pre.build.4059": { + "sha512": "nQh89ZP+wmC79euBg5p/6Jr8rugPTQo/GAx9Wry2Pgu9q4ltDv9XeQTqsQE/trvqOjyrTRtCOQT1P+vcufj0Kg==", + "type": "package", + "path": "xunit.core/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/xunit.core.props", + "build/xunit.core.targets", + "buildMultiTargeting/xunit.core.props", + "buildMultiTargeting/xunit.core.targets", + "xunit.core.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.core.nuspec" + ] + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "sha512": "MpnCaHPR67FdYgdkbzuSIxtYdGJaY6WwjotyvifGKcy94M3Rm2eCQqKQsFSN1TbcRhHRCweOo24+E+wnGxjuTw==", + "type": "package", + "path": "xunit.extensibility.core/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/xunit.core.dll", + "lib/net452/xunit.core.dll.tdnet", + "lib/net452/xunit.core.xml", + "lib/net452/xunit.runner.tdnet.dll", + "lib/net452/xunit.runner.utility.net452.dll", + "lib/netstandard1.1/xunit.core.dll", + "lib/netstandard1.1/xunit.core.xml", + "lib/netstandard2.0/xunit.core.dll", + "lib/netstandard2.0/xunit.core.xml", + "xunit.extensibility.core.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "sha512": "sLmjOlIAAs4omfY/019PQMXWkxpxd/CfVnTEMBBEN89fU/bPfeoNRBjnqJ54tHpK2xDCPUye19PNSFH4aW6B8Q==", + "type": "package", + "path": "xunit.extensibility.execution/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/xunit.execution.desktop.dll", + "lib/net452/xunit.execution.desktop.xml", + "lib/netstandard1.1/xunit.execution.dotnet.dll", + "lib/netstandard1.1/xunit.execution.dotnet.xml", + "lib/netstandard2.0/xunit.execution.dotnet.dll", + "lib/netstandard2.0/xunit.execution.dotnet.xml", + "xunit.extensibility.execution.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "sha512": "FBASqurcvUoVQ52vY2LH4XUf1/Hkz9wmcuBj5IqIhEpgK+YjhWePepguSlpSre44hhhWNe5WO3XIrZ6pGTbyng==", + "type": "package", + "path": "xunit.performance.api/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.api.dll", + "lib/net461/xunit.performance.api.xml", + "lib/netstandard1.5/xunit.performance.api.dll", + "lib/netstandard1.5/xunit.performance.api.xml", + "xunit.performance.api.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.api.nuspec" + ] + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "sha512": "1CEv1zleRb8D0mDckZjpR8VPaP+2YSeMUAnnb/a3aL0DrG9IEeTN2Uu+30IaX/OHG7iuqLX9zWja+sey76Us0w==", + "type": "package", + "path": "xunit.performance.core/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/netstandard1.3/xunit.performance.core.dll", + "lib/netstandard1.3/xunit.performance.core.xml", + "xunit.performance.core.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.core.nuspec" + ] + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "sha512": "hfNLz/+fA1CqHPQWexPoQBDMs1y1x8gdy1WgQH1nUG5Jf1KVviUddy3+MCTEbuELyqrcLpkR/p57WLUAYKwhCw==", + "type": "package", + "path": "xunit.performance.execution/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.execution.dll", + "lib/net461/xunit.performance.execution.xml", + "lib/netstandard1.5/xunit.performance.execution.dll", + "lib/netstandard1.5/xunit.performance.execution.xml", + "xunit.performance.execution.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.execution.nuspec" + ] + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "sha512": "VWtijjK9HfQvx2nmQ15hEAtBdHEmWSVk0Gc60+yEF+xMq/wZmD0jSvCykW5Jz0ponX88Z6RU39ZjRDq+vLnCgg==", + "type": "package", + "path": "xunit.performance.metrics/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.metrics.dll", + "lib/net461/xunit.performance.metrics.xml", + "lib/netstandard1.5/xunit.performance.metrics.dll", + "lib/netstandard1.5/xunit.performance.metrics.xml", + "xunit.performance.metrics.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.metrics.nuspec" + ] + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "sha512": "oWTxKNZbtkn8HBHi59zxTRP4y80SlaOqFOu+ausTLOyOPr7/aZ39U6L9F8mh69890NRbW2Qcd/UdP3YvPsseHw==", + "type": "package", + "path": "xunit.runner.console/2.4.1-pre.build.4059", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/xunit.runner.console.props", + "tools/net452/xunit.abstractions.dll", + "tools/net452/xunit.console.exe", + "tools/net452/xunit.console.exe.config", + "tools/net452/xunit.console.x86.exe", + "tools/net452/xunit.console.x86.exe.config", + "tools/net452/xunit.runner.reporters.net452.dll", + "tools/net452/xunit.runner.utility.net452.dll", + "tools/net46/xunit.abstractions.dll", + "tools/net46/xunit.console.exe", + "tools/net46/xunit.console.exe.config", + "tools/net46/xunit.console.x86.exe", + "tools/net46/xunit.console.x86.exe.config", + "tools/net46/xunit.runner.reporters.net452.dll", + "tools/net46/xunit.runner.utility.net452.dll", + "tools/net461/xunit.abstractions.dll", + "tools/net461/xunit.console.exe", + "tools/net461/xunit.console.exe.config", + "tools/net461/xunit.console.x86.exe", + "tools/net461/xunit.console.x86.exe.config", + "tools/net461/xunit.runner.reporters.net452.dll", + "tools/net461/xunit.runner.utility.net452.dll", + "tools/net462/xunit.abstractions.dll", + "tools/net462/xunit.console.exe", + "tools/net462/xunit.console.exe.config", + "tools/net462/xunit.console.x86.exe", + "tools/net462/xunit.console.x86.exe.config", + "tools/net462/xunit.runner.reporters.net452.dll", + "tools/net462/xunit.runner.utility.net452.dll", + "tools/net47/xunit.abstractions.dll", + "tools/net47/xunit.console.exe", + "tools/net47/xunit.console.exe.config", + "tools/net47/xunit.console.x86.exe", + "tools/net47/xunit.console.x86.exe.config", + "tools/net47/xunit.runner.reporters.net452.dll", + "tools/net47/xunit.runner.utility.net452.dll", + "tools/net471/xunit.abstractions.dll", + "tools/net471/xunit.console.exe", + "tools/net471/xunit.console.exe.config", + "tools/net471/xunit.console.x86.exe", + "tools/net471/xunit.console.x86.exe.config", + "tools/net471/xunit.runner.reporters.net452.dll", + "tools/net471/xunit.runner.utility.net452.dll", + "tools/net472/xunit.abstractions.dll", + "tools/net472/xunit.console.exe", + "tools/net472/xunit.console.exe.config", + "tools/net472/xunit.console.x86.exe", + "tools/net472/xunit.console.x86.exe.config", + "tools/net472/xunit.runner.reporters.net452.dll", + "tools/net472/xunit.runner.utility.net452.dll", + "tools/netcoreapp1.0/xunit.abstractions.dll", + "tools/netcoreapp1.0/xunit.console.deps.json", + "tools/netcoreapp1.0/xunit.console.dll", + "tools/netcoreapp1.0/xunit.console.dll.config", + "tools/netcoreapp1.0/xunit.console.runtimeconfig.json", + "tools/netcoreapp1.0/xunit.runner.reporters.netcoreapp10.dll", + "tools/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll", + "tools/netcoreapp1.0/xunit.runner.utility.netcoreapp10.xml", + "tools/netcoreapp2.0/xunit.abstractions.dll", + "tools/netcoreapp2.0/xunit.console.deps.json", + "tools/netcoreapp2.0/xunit.console.dll", + "tools/netcoreapp2.0/xunit.console.dll.config", + "tools/netcoreapp2.0/xunit.console.runtimeconfig.json", + "tools/netcoreapp2.0/xunit.runner.reporters.netcoreapp10.dll", + "tools/netcoreapp2.0/xunit.runner.utility.netcoreapp10.dll", + "tools/netcoreapp2.0/xunit.runner.utility.netcoreapp10.xml", + "xunit.runner.console.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.runner.console.nuspec" + ] + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "sha512": "YyTcFxooSkYo9gr8HgLhHZ7T5PHjnCLC9dGXgbLwMCNZeqO+DzY8nWehE++FasEwMAlUv87MLhLEVXoVvMQtKQ==", + "type": "package", + "path": "xunit.runner.utility/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/xunit.runner.utility.net35.dll", + "lib/net35/xunit.runner.utility.net35.xml", + "lib/net452/xunit.runner.utility.net452.dll", + "lib/net452/xunit.runner.utility.net452.xml", + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll", + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.xml", + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll", + "lib/netstandard1.1/xunit.runner.utility.netstandard11.xml", + "lib/netstandard1.5/xunit.runner.utility.netstandard15.dll", + "lib/netstandard1.5/xunit.runner.utility.netstandard15.xml", + "lib/netstandard2.0/xunit.runner.utility.netstandard20.dll", + "lib/netstandard2.0/xunit.runner.utility.netstandard20.xml", + "lib/uap10.0/xunit.runner.utility.uwp10.dll", + "lib/uap10.0/xunit.runner.utility.uwp10.pri", + "lib/uap10.0/xunit.runner.utility.uwp10.xml", + "xunit.runner.utility.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + ".NETStandard,Version=v1.4": [ + "Microsoft.CodeAnalysis.Compilers >= 1.1.1", + "Microsoft.Diagnostics.Tracing.TraceEvent >= 2.0.43", + "Microsoft.NETCore.Platforms >= 3.1.0-preview3.19551.4", + "System.Console >= 4.4.0-beta-24913-02", + "System.Dynamic.Runtime >= 4.4.0-beta-24913-02", + "System.IO.FileSystem >= 4.4.0-beta-24913-02", + "System.Linq >= 4.4.0-beta-24913-02", + "System.Numerics.Vectors >= 4.4.0-preview2-25302-03", + "System.Reflection >= 4.4.0-beta-24913-02", + "System.Reflection.Extensions >= 4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions >= 4.4.0-preview2-25302-03", + "System.Runtime >= 4.4.0-beta-24913-02", + "System.Runtime.Extensions >= 4.4.0-beta-24913-02", + "System.Runtime.Numerics >= 4.4.0-beta-24913-02", + "System.Security.Cryptography.Algorithms >= 4.4.0-beta-24913-02", + "System.Text.RegularExpressions >= 4.4.0-beta-24913-02", + "System.Threading >= 4.4.0-beta-24913-02", + "System.Threading.Tasks >= 4.4.0-beta-24913-02", + "System.Threading.Tasks.Parallel >= 4.4.0-beta-24913-02", + "System.Threading.Thread >= 4.4.0-beta-24913-02", + "xunit >= 2.4.1-pre.build.4059", + "xunit.performance.api >= 1.0.0-beta-build0015", + "xunit.performance.core >= 1.0.0-beta-build0015", + "xunit.performance.execution >= 1.0.0-beta-build0015", + "xunit.performance.metrics >= 1.0.0-beta-build0015", + "xunit.runner.console >= 2.4.1-pre.build.4059", + "xunit.runner.utility >= 2.4.1-pre.build.4059" + ] + }, + "packageFolders": { + "/home/z/Dev/coreclr-sec/.packages": {} + }, + "project": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+roslyn/benchmark+roslyn.csproj", + "projectName": "benchmark+roslyn", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+roslyn/benchmark+roslyn.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+roslyn/obj-linux-x64", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netstandard1.4" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netstandard1.4": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netstandard1.4": { + "dependencies": { + "Microsoft.CodeAnalysis.Compilers": { + "target": "Package", + "version": "[1.1.1, )" + }, + "Microsoft.Diagnostics.Tracing.TraceEvent": { + "target": "Package", + "version": "[2.0.43, )" + }, + "Microsoft.NETCore.Platforms": { + "target": "Package", + "version": "[3.1.0-preview3.19551.4, )" + }, + "System.Console": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Dynamic.Runtime": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.IO.FileSystem": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Numerics.Vectors": { + "target": "Package", + "version": "[4.4.0-preview2-25302-03, )" + }, + "System.Reflection": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.TypeExtensions": { + "target": "Package", + "version": "[4.4.0-preview2-25302-03, )" + }, + "System.Runtime": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Numerics": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Security.Cryptography.Algorithms": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Text.RegularExpressions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Tasks": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Tasks.Parallel": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Thread": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.performance.api": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.core": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.execution": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.metrics": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.runner.console": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.runner.utility": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x64": { + "#import": [] + } + } + }, + "logs": [ + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> System.Numerics.Vectors 4.4.0-preview2-25302-03 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> System.Numerics.Vectors 4.4.0-preview2-25302-03 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> System.Numerics.Vectors 4.4.0-preview2-25302-03 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> System.Numerics.Vectors 4.4.0-preview2-25302-03 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> System.Numerics.Vectors 4.4.0-preview2-25302-03 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> System.Numerics.Vectors 4.4.0-preview2-25302-03 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + } + ] +}
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+roslyn/obj-linux-x86/benchmark+roslyn.csproj.nuget.cache b/tests/src/JIT/config/benchmark+roslyn/obj-linux-x86/benchmark+roslyn.csproj.nuget.cache new file mode 100644 index 0000000000..924c4c450d --- /dev/null +++ b/tests/src/JIT/config/benchmark+roslyn/obj-linux-x86/benchmark+roslyn.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "zbRz9+Pg2nPYr+zzrK4rQKGKkzEs/R9yZdv1GVohCMdJhUrm8Osc/WmjExNCWUbJtHXzg0BO/FtexLvF2OjVBA==", + "success": true +}
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+roslyn/obj-linux-x86/benchmark+roslyn.csproj.nuget.dgspec.json b/tests/src/JIT/config/benchmark+roslyn/obj-linux-x86/benchmark+roslyn.csproj.nuget.dgspec.json new file mode 100644 index 0000000000..a220822a45 --- /dev/null +++ b/tests/src/JIT/config/benchmark+roslyn/obj-linux-x86/benchmark+roslyn.csproj.nuget.dgspec.json @@ -0,0 +1,161 @@ +{ + "format": 1, + "restore": { + "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+roslyn/benchmark+roslyn.csproj": {} + }, + "projects": { + "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+roslyn/benchmark+roslyn.csproj": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+roslyn/benchmark+roslyn.csproj", + "projectName": "benchmark+roslyn", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+roslyn/benchmark+roslyn.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+roslyn/obj-linux-x86", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netstandard1.4" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netstandard1.4": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netstandard1.4": { + "dependencies": { + "Microsoft.CodeAnalysis.Compilers": { + "target": "Package", + "version": "[1.1.1, )" + }, + "Microsoft.Diagnostics.Tracing.TraceEvent": { + "target": "Package", + "version": "[2.0.43, )" + }, + "Microsoft.NETCore.Platforms": { + "target": "Package", + "version": "[3.1.0-preview3.19551.4, )" + }, + "System.Console": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Dynamic.Runtime": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.IO.FileSystem": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Numerics.Vectors": { + "target": "Package", + "version": "[4.4.0-preview2-25302-03, )" + }, + "System.Reflection": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.TypeExtensions": { + "target": "Package", + "version": "[4.4.0-preview2-25302-03, )" + }, + "System.Runtime": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Numerics": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Security.Cryptography.Algorithms": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Text.RegularExpressions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Tasks": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Tasks.Parallel": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Thread": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.performance.api": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.core": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.execution": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.metrics": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.runner.console": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.runner.utility": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x86": { + "#import": [] + } + } + } + } +}
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+roslyn/obj-linux-x86/benchmark+roslyn.csproj.nuget.g.props b/tests/src/JIT/config/benchmark+roslyn/obj-linux-x86/benchmark+roslyn.csproj.nuget.g.props new file mode 100644 index 0000000000..4e136fd2bc --- /dev/null +++ b/tests/src/JIT/config/benchmark+roslyn/obj-linux-x86/benchmark+roslyn.csproj.nuget.g.props @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> + <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> + <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> + <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageRoot> + <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageFolders> + <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.4.0</NuGetToolVersion> + </PropertyGroup> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> + <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)/xunit.runner.console/2.4.1-pre.build.4059/build/xunit.runner.console.props" Condition="Exists('$(NuGetPackageRoot)/xunit.runner.console/2.4.1-pre.build.4059/build/xunit.runner.console.props')" /> + <Import Project="$(NuGetPackageRoot)/microsoft.diagnostics.tracing.traceevent/2.0.43/build/Microsoft.Diagnostics.Tracing.TraceEvent.props" Condition="Exists('$(NuGetPackageRoot)/microsoft.diagnostics.tracing.traceevent/2.0.43/build/Microsoft.Diagnostics.Tracing.TraceEvent.props')" /> + <Import Project="$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.props" Condition="Exists('$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.props')" /> + </ImportGroup> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Pkgxunit_runner_console Condition=" '$(Pkgxunit_runner_console)' == '' ">/home/z/Dev/coreclr-sec/.packages/xunit.runner.console/2.4.1-pre.build.4059</Pkgxunit_runner_console> + <Pkgxunit_analyzers Condition=" '$(Pkgxunit_analyzers)' == '' ">/home/z/Dev/coreclr-sec/.packages/xunit.analyzers/0.10.0</Pkgxunit_analyzers> + <PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">/home/z/Dev/coreclr-sec/.packages/microsoft.codeanalysis.analyzers/1.1.0</PkgMicrosoft_CodeAnalysis_Analyzers> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+roslyn/obj-linux-x86/benchmark+roslyn.csproj.nuget.g.targets b/tests/src/JIT/config/benchmark+roslyn/obj-linux-x86/benchmark+roslyn.csproj.nuget.g.targets new file mode 100644 index 0000000000..96b54d803c --- /dev/null +++ b/tests/src/JIT/config/benchmark+roslyn/obj-linux-x86/benchmark+roslyn.csproj.nuget.g.targets @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> + <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.targets" Condition="Exists('$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.targets')" /> + </ImportGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+roslyn/obj-linux-x86/project.assets.json b/tests/src/JIT/config/benchmark+roslyn/obj-linux-x86/project.assets.json new file mode 100644 index 0000000000..c8bc354ef8 --- /dev/null +++ b/tests/src/JIT/config/benchmark+roslyn/obj-linux-x86/project.assets.json @@ -0,0 +1,8868 @@ +{ + "version": 3, + "targets": { + ".NETStandard,Version=v1.4": { + "CommandLineParser/2.1.1-beta": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-24027", + "System.Console": "4.0.0-rc2-24027", + "System.Diagnostics.Debug": "4.0.11-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.IO": "4.1.0-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Linq.Expressions": "4.0.11-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Reflection.Extensions": "4.0.1-rc2-24027", + "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime": "4.1.0-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027" + }, + "compile": { + "lib/netstandard1.5/CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard1.5/CommandLine.dll": {} + } + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "type": "package" + }, + "Microsoft.CodeAnalysis.Common/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "1.1.0", + "System.Collections.Immutable": "1.1.37", + "System.Reflection.Metadata": "1.1.0" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.Compilers/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "[1.1.1]", + "Microsoft.CodeAnalysis.VisualBasic": "[1.1.1]" + } + }, + "Microsoft.CodeAnalysis.CSharp/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.1.1]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CodeAnalysis.VisualBasic/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "1.1.1" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll": {} + } + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "type": "package", + "build": { + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.2.0-beta-24913-02": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.AppContext.dll": {} + } + }, + "System.Buffers/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Collections.Concurrent/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Diagnostics.Debug": "4.0.0", + "System.Globalization": "4.0.0", + "System.Linq": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Console/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Dynamic.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Linq": "4.4.0-beta-24913-02", + "System.Linq.Expressions": "4.4.0-beta-24913-02", + "System.ObjectModel": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Linq.Expressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Numerics.Vectors/4.4.0-preview2-25302-03": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "ref/netstandard1.0/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Numerics.Vectors.dll": {} + } + }, + "System.ObjectModel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Emit/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Collections.Immutable": "1.1.37", + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.InteropServices": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Text.Encoding.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.2/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/dotnet5.2/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/portable45-net45+win8+wpa81/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.4.0-preview2-25302-03": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp80+wpa81/_._": {} + } + }, + "System.Runtime.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime.Handles/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Numerics/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} + }, + "runtime": { + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.IO": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Security.Cryptography.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Text.Encoding/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.RegularExpressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Thread/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Thread.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.ValueTuple/4.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "[2.4.1-pre.build.4059]", + "xunit.core": "[2.4.1-pre.build.4059]" + } + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + } + }, + "xunit.analyzers/0.10.0": { + "type": "package" + }, + "xunit.assert/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.1/xunit.assert.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.assert.dll": {} + } + }, + "xunit.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.1-pre.build.4059]", + "xunit.extensibility.execution": "[2.4.1-pre.build.4059]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "[2.4.1-pre.build.4059]" + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + } + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "CommandLineParser": "2.1.1-beta", + "Microsoft.3rdpartytools.MarkdownLog": "0.10.0-alpha-experimental", + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.ValueTuple": "4.3.1", + "System.Xml.XmlSerializer": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015", + "xunit.performance.execution": "1.0.0-beta-build0015", + "xunit.performance.metrics": "1.0.0-beta-build0015", + "xunit.runner.utility": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + } + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + } + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit": "2.2.0-beta2-build3300", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + } + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Formatters": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + } + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "type": "package", + "build": { + "build/xunit.runner.console.props": {} + } + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll": {} + } + } + }, + ".NETStandard,Version=v1.4/linux-x86": { + "CommandLineParser/2.1.1-beta": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-24027", + "System.Console": "4.0.0-rc2-24027", + "System.Diagnostics.Debug": "4.0.11-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.IO": "4.1.0-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Linq.Expressions": "4.0.11-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Reflection.Extensions": "4.0.1-rc2-24027", + "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime": "4.1.0-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027" + }, + "compile": { + "lib/netstandard1.5/CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard1.5/CommandLine.dll": {} + } + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "type": "package" + }, + "Microsoft.CodeAnalysis.Common/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "1.1.0", + "System.Collections.Immutable": "1.1.37", + "System.Reflection.Metadata": "1.1.0" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.Compilers/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "[1.1.1]", + "Microsoft.CodeAnalysis.VisualBasic": "[1.1.1]" + } + }, + "Microsoft.CodeAnalysis.CSharp/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.1.1]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CodeAnalysis.VisualBasic/1.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "1.1.1" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll": {} + } + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "type": "package", + "build": { + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.2.0-beta-24913-02": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.unix.Microsoft.Win32.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "runtime.any.System.Collections/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tools/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.Tools.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "runtime.any.System.Globalization/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.dll": {} + } + }, + "runtime.any.System.Globalization.Calendars/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "runtime.any.System.IO/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.IO.dll": {} + } + }, + "runtime.any.System.Reflection/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.dll": {} + } + }, + "runtime.any.System.Reflection.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Primitives.dll": {} + } + }, + "runtime.any.System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Resources.ResourceManager.dll": {} + } + }, + "runtime.any.System.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.dll": {} + } + }, + "runtime.any.System.Runtime.Handles/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "runtime.any.System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.InteropServices.dll": {} + } + }, + "runtime.any.System.Text.Encoding/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "runtime.any.System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "runtime.any.System.Threading.Tasks/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "runtime.any.System.Threading.Timer/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Timer.dll": {} + } + }, + "runtime.native.System/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.unix.Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.unix.System.Console/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Console.dll": {} + } + }, + "runtime.unix.System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.unix.System.IO.FileSystem/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Buffers": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "runtime.unix.System.Net.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "runtime.unix.System.Net.Sockets/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.Net.NameResolution": "4.4.0-beta-24913-02", + "System.Net.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.ThreadPool": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "runtime.unix.System.Private.Uri/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.0/System.Private.Uri.dll": {} + } + }, + "runtime.unix.System.Runtime.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.AppContext.dll": {} + } + }, + "System.Buffers/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Buffers.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Collections": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Collections.Concurrent/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Diagnostics.Debug": "4.0.0", + "System.Globalization": "4.0.0", + "System.Linq": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Console/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "runtime.unix.System.Console": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.unix.System.Diagnostics.Debug": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Diagnostics.Tools": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Diagnostics.Tracing": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Dynamic.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Linq": "4.4.0-beta-24913-02", + "System.Linq.Expressions": "4.4.0-beta-24913-02", + "System.ObjectModel": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Globalization": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization.Calendars": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.any.System.IO": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {} + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.unix.System.IO.FileSystem": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Linq.Expressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Net.NameResolution/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Net.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Security.Principal.Windows": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {} + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.unix.System.Net.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.unix.System.Net.Sockets": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Numerics.Vectors/4.4.0-preview2-25302-03": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "ref/netstandard1.0/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Numerics.Vectors.dll": {} + } + }, + "System.ObjectModel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Private.Uri/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "runtime.unix.System.Private.Uri": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + } + }, + "System.Reflection/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Reflection": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Emit/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Collections.Immutable": "1.1.37", + "System.Diagnostics.Debug": "4.0.0", + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.InteropServices": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Text.Encoding.Extensions": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.2/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/dotnet5.2/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Reflection.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/portable45-net45+win8+wpa81/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.4.0-preview2-25302-03": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Resources.ResourceManager": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "runtime.any.System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp80+wpa81/_._": {} + } + }, + "System.Runtime.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.unix.System.Runtime.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime.Handles/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Runtime.Handles": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "runtime.any.System.Runtime.InteropServices": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "System.Runtime.Numerics/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} + }, + "runtime": { + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.Claims/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Security.Principal": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.IO": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Security.Cryptography.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.Win32.Primitives": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Security.Claims": "4.4.0-beta-24913-02", + "System.Security.Principal": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll": {} + } + }, + "System.Text.Encoding/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Text.Encoding": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "runtime.any.System.Text.Encoding.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.RegularExpressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Thread/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Threading.Timer": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.ValueTuple/4.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "[2.4.1-pre.build.4059]", + "xunit.core": "[2.4.1-pre.build.4059]" + } + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + } + }, + "xunit.analyzers/0.10.0": { + "type": "package" + }, + "xunit.assert/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.1/xunit.assert.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.assert.dll": {} + } + }, + "xunit.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.1-pre.build.4059]", + "xunit.extensibility.execution": "[2.4.1-pre.build.4059]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "[2.4.1-pre.build.4059]" + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + } + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "CommandLineParser": "2.1.1-beta", + "Microsoft.3rdpartytools.MarkdownLog": "0.10.0-alpha-experimental", + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.ValueTuple": "4.3.1", + "System.Xml.XmlSerializer": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015", + "xunit.performance.execution": "1.0.0-beta-build0015", + "xunit.performance.metrics": "1.0.0-beta-build0015", + "xunit.runner.utility": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + } + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + } + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit": "2.2.0-beta2-build3300", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + } + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Formatters": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + } + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "type": "package", + "build": { + "build/xunit.runner.console.props": {} + } + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll": {} + } + } + } + }, + "libraries": { + "CommandLineParser/2.1.1-beta": { + "sha512": "TmWNdtqLmtqLbwr0c9l1nEjjk39GB7wevl+1rxN907kjmdUUu5s470bWJFPEckfjYTnZ216xziW5fMXP35KVXg==", + "type": "package", + "path": "commandlineparser/2.1.1-beta", + "files": [ + ".nupkg.metadata", + "commandlineparser.2.1.1-beta.nupkg.sha512", + "commandlineparser.nuspec", + "lib/net40/CommandLine.XML", + "lib/net40/CommandLine.dll", + "lib/net45/CommandLine.XML", + "lib/net45/CommandLine.dll", + "lib/netstandard1.5/CommandLine.dll", + "lib/netstandard1.5/CommandLine.xml", + "readme.md" + ] + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "sha512": "BlzmPbwd0w2OGgXHFRWYu0tsJj6f6rAglvZ5q5hi71TGl6DDCZjP7WmMvcEFZi5MGGWkZ3VoPXQ4hJMMuGJF6A==", + "type": "package", + "path": "microsoft.3rdpartytools.markdownlog/0.10.0-alpha-experimental", + "files": [ + ".nupkg.metadata", + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll", + "microsoft.3rdpartytools.markdownlog.0.10.0-alpha-experimental.nupkg.sha512", + "microsoft.3rdpartytools.markdownlog.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "sha512": "HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/1.1.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.rtf", + "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", + "microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.1.1": { + "sha512": "r958nYjnl//vgjLljJLu52N2FJKlKYF5pqzyXM/C6K0w8uMcKIkJS4RXygqRBhW7ZjlsJXfiEX/JxLeDxMQUWQ==", + "type": "package", + "path": "microsoft.codeanalysis.common/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "microsoft.codeanalysis.common.1.1.1.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Compilers/1.1.1": { + "sha512": "tqCaCYlRDRra+vI7LRpDhbCdk1grzaNENCij8DOpAnTf8hR3WMcjGGD+PxWNkLFGJcfzNUbIFhb39onmVZI5KQ==", + "type": "package", + "path": "microsoft.codeanalysis.compilers/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "microsoft.codeanalysis.compilers.1.1.1.nupkg.sha512", + "microsoft.codeanalysis.compilers.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.1.1": { + "sha512": "HH8f/KK4fjTWNaKhHPgjF1Hm7lGMEB6A3DK+CUzW9ZbudZTFdNwb3Oa4qDZ25HWF+ifImSdu+1bLgqKCWRbsNQ==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "microsoft.codeanalysis.csharp.1.1.1.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeAnalysis.VisualBasic/1.1.1": { + "sha512": "QFOiWdSHCJwy1usS/7Ka+VAAhtXeEwQCDOd1iKGllGgcJuSiwtLEchxfOkXKsFtNq0P03mVEDRfUxc+6XHR60A==", + "type": "package", + "path": "microsoft.codeanalysis.visualbasic/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "lib/net45/Microsoft.CodeAnalysis.VisualBasic.dll", + "lib/net45/Microsoft.CodeAnalysis.VisualBasic.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.xml", + "microsoft.codeanalysis.visualbasic.1.1.1.nupkg.sha512", + "microsoft.codeanalysis.visualbasic.nuspec" + ] + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "sha512": "76ol4cZYvYiaiP5Vbows1ts2WDGpi/x2QxaoAToNCoGD+s2v7znzxPygPprXNYW4HmWgN8z3FsItIZb45X8OgQ==", + "type": "package", + "path": "microsoft.diagnostics.tracing.traceevent/2.0.43", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props", + "lib/native/amd64/KernelTraceControl.dll", + "lib/native/amd64/msdia140.dll", + "lib/native/x86/KernelTraceControl.Win61.dll", + "lib/native/x86/KernelTraceControl.dll", + "lib/native/x86/msdia140.dll", + "lib/net45/Dia2Lib.dll", + "lib/net45/Microsoft.Diagnostics.FastSerialization.dll", + "lib/net45/Microsoft.Diagnostics.FastSerialization.xml", + "lib/net45/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/net45/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/net45/OSExtensions.dll", + "lib/net45/TraceReloggerLib.dll", + "lib/netstandard1.6/Dia2Lib.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.xml", + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/netstandard1.6/OSExtensions.dll", + "lib/netstandard1.6/TraceReloggerLib.dll", + "lib/netstandard2.0/Dia2Lib.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.FastSerialization.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.FastSerialization.xml", + "lib/netstandard2.0/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/netstandard2.0/OSExtensions.dll", + "lib/netstandard2.0/TraceReloggerLib.dll", + "microsoft.diagnostics.tracing.traceevent.2.0.43.nupkg.sha512", + "microsoft.diagnostics.tracing.traceevent.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "sha512": "Clr2Jue6oyBlnsVf9g5qjoi06+QDYVq+U32buU9W+mRYeIFg4LXeJei1q6P/1niiKX8WIVo7KbBnqW80jVcOvw==", + "type": "package", + "path": "microsoft.netcore.platforms/3.1.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.3.1.0-preview3.19551.4.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.2.0-beta-24913-02": { + "sha512": "Z76BzrF4Nz0qVN676Tlmk3GdRxvlFDQZF6FoBRcfIkpEd07H4JLkuqryqTlbQ30X3XXUzAtsImuI2yW9eYb55g==", + "type": "package", + "path": "microsoft.netcore.targets/1.2.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.2.0-beta-24913-02.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "runtime.any.System.Collections/4.4.0-beta-24913-02": { + "sha512": "F2g9ysPsUdvdzg7PusjRSfO9lCYa8hAR2TxoT+WaJ3RqCjZUmrwzFRk6mkBVhb/jqoku1wh+DjkiVws4T/iI3A==", + "type": "package", + "path": "runtime.any.system.collections/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.dll", + "lib/netstandard1.3/System.Collections.dll", + "lib/netstandard1.7/System.Collections.dll", + "lib/uap10.1/System.Collections.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.collections.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.collections.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Collections.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Diagnostics.Tools/4.4.0-beta-24913-02": { + "sha512": "q9ex5GZda4qQWulQXw0mXxUpzYsIXA+fJsduZ4+76rFfkCTCAYnFqLg3pq1++oRe5utNE55kAWCXnPEfBjhgEw==", + "type": "package", + "path": "runtime.any.system.diagnostics.tools/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/netstandard1.3/System.Diagnostics.Tools.dll", + "lib/netstandard1.7/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tools.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.diagnostics.tools.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "sha512": "Eb5yKhR992tpieQ3k2U0Mmu7SzGodlBz7pPY4vVxrmLgO+t6bwye0Bw6+tcqO05gN3kDH47C/CKyh+ta41ULdw==", + "type": "package", + "path": "runtime.any.system.diagnostics.tracing/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "lib/netstandard1.5/System.Diagnostics.Tracing.dll", + "lib/netstandard1.7/System.Diagnostics.Tracing.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tracing.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.diagnostics.tracing.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Globalization/4.4.0-beta-24913-02": { + "sha512": "szVxxBBn8e+UDwJ+lg9C+XPSjvifllUzLuGrwhM9xPKdQUjJMrxd23yG49n0XM3q+pSIrOoHwLgWf3QDmt4PKw==", + "type": "package", + "path": "runtime.any.system.globalization/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Globalization.dll", + "lib/netstandard1.3/System.Globalization.dll", + "lib/netstandard1.7/System.Globalization.dll", + "lib/uap10.1/System.Globalization.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.globalization.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/aot/lib/uap101/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Globalization.Calendars/4.4.0-beta-24913-02": { + "sha512": "f+dLksC+5rTLnXj5ILLvAmrhvfuklzN3ba9g5O8hmbZd8zvSELF2FSw+GXbWsgqXEtjvgs4LvvH0UHkYm4nigA==", + "type": "package", + "path": "runtime.any.system.globalization.calendars/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net/_._", + "lib/netcore50/System.Globalization.Calendars.dll", + "lib/netstandard1.3/System.Globalization.Calendars.dll", + "lib/netstandard1.7/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.calendars.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.globalization.calendars.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.IO/4.4.0-beta-24913-02": { + "sha512": "jr+a+OUh/h6BIO/N+SXMDVbUln6dJIEPw/Ffaqj6aq+HmjMK1sr/aP6jw6sWRUU5hi91ppd3VMQ0xyk7Z3qBbA==", + "type": "package", + "path": "runtime.any.system.io/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.IO.dll", + "lib/netstandard1.5/System.IO.dll", + "lib/netstandard1.7/System.IO.dll", + "lib/uap10.1/System.IO.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.io.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.io.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Reflection/4.4.0-beta-24913-02": { + "sha512": "3kbe1bVviwUdBK5fN5O0646ZvpSMwMNl0uB68nf1aH9LA9EQo/xDwAbRmqbhY1wbN4ydH8PhsI2H9YNrnmRIRQ==", + "type": "package", + "path": "runtime.any.system.reflection/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.dll", + "lib/netstandard1.5/System.Reflection.dll", + "lib/netstandard1.7/System.Reflection.dll", + "lib/uap10.1/System.Reflection.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.reflection.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Reflection.Primitives/4.4.0-beta-24913-02": { + "sha512": "dEDCNyC3/P1Cl3+z5Gqhe6NZ20slv2biVjq1p8VInY9ETQTzK3QYBESPXkBlLgqG4xX+AXHIoEzWChXmj1KCYg==", + "type": "package", + "path": "runtime.any.system.reflection.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/netstandard1.3/System.Reflection.Primitives.dll", + "lib/netstandard1.7/System.Reflection.Primitives.dll", + "lib/portable45-net45+win8+wp8+wpa81/_._", + "lib/portable45-net45+win8+wpa81/_._", + "lib/uap10.1/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.reflection.primitives.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Reflection.Primitives.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "sha512": "oPqDrDykaRm+drr+dDXAveefrhawetYPTOETO84M2XeZsdgVR1YATecZun7PbbgUnSgvTR6UviiTnffEYIaIUg==", + "type": "package", + "path": "runtime.any.system.resources.resourcemanager/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/netstandard1.3/System.Resources.ResourceManager.dll", + "lib/netstandard1.7/System.Resources.ResourceManager.dll", + "lib/uap10.1/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.resources.resourcemanager.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.resources.resourcemanager.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Runtime/4.4.0-beta-24913-02": { + "sha512": "WszqTsye25+HP+UHSbqW5zW4khkQGA4fE9T/ZbPwzjA8t7+H7kc6RZEEaw3NmNBHVPCPQ2/rPs+DuVr2ely9dQ==", + "type": "package", + "path": "runtime.any.system.runtime/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.dll", + "lib/netcoreapp1.2/System.Runtime.dll", + "lib/netstandard1.5/System.Runtime.dll", + "lib/netstandard1.7/System.Runtime.dll", + "lib/uap10.1/System.Runtime.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.runtime.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Runtime.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Runtime.Handles/4.4.0-beta-24913-02": { + "sha512": "QVZWjaAvR/fAnWQ84CIfOL1bP3sROghLXJV2TVOrCSy3nGbKe8R0hJMMSiYRZ1cJSPFkXCR4ov9Giq2UWhap2w==", + "type": "package", + "path": "runtime.any.system.runtime.handles/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netstandard1.3/System.Runtime.Handles.dll", + "lib/netstandard1.7/System.Runtime.Handles.dll", + "lib/uap10.1/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.handles.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.runtime.handles.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "sha512": "fQhiPiPdc2MvT1Ly8qNhXXRhtOn80nxI7zN/Rzqa+kUBETdJzivUhs2KfaMA6CeArM0HlCZr9nkb5jPe3QSy0A==", + "type": "package", + "path": "runtime.any.system.runtime.interopservices/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "lib/netstandard1.5/System.Runtime.InteropServices.dll", + "lib/netstandard1.6/System.Runtime.InteropServices.dll", + "lib/netstandard1.7/System.Runtime.InteropServices.dll", + "lib/uap10.1/System.Runtime.InteropServices.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.interopservices.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.runtime.interopservices.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Runtime.InteropServices.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Text.Encoding/4.4.0-beta-24913-02": { + "sha512": "Xeqwi4XTKzoU787kjWuFmad+InOs+3GFQt7jYgTvZescP/O1QPOpXo2OBdohyM+G7krDarJufdl4S7fNvhWacQ==", + "type": "package", + "path": "runtime.any.system.text.encoding/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/netstandard1.3/System.Text.Encoding.dll", + "lib/netstandard1.7/System.Text.Encoding.dll", + "lib/uap10.1/System.Text.Encoding.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.text.encoding.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "sha512": "x32Af805w4cweMs7FNZCXHe/k2twQFE9l0/siz7P86e4PhHz6wc4BJ6I8AR3kxqBwtgSF7QPnLhN1yNxem8/MA==", + "type": "package", + "path": "runtime.any.system.text.encoding.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll", + "lib/netstandard1.7/System.Text.Encoding.Extensions.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.text.encoding.extensions.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Threading.Tasks/4.4.0-beta-24913-02": { + "sha512": "WfTJsPBqnWM3ba8Ua9xehHQbJW+RwcAu9LCWXuMhQAmsxssz15uycggqRdsS6hb2dRkZS9Jz3dtu3ns6Q7M2qw==", + "type": "package", + "path": "runtime.any.system.threading.tasks/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/netstandard1.3/System.Threading.Tasks.dll", + "lib/netstandard1.7/System.Threading.Tasks.dll", + "lib/uap10.1/System.Threading.Tasks.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.tasks.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.threading.tasks.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Threading.Tasks.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Threading.Timer/4.4.0-beta-24913-02": { + "sha512": "+IDpQUBdCovPqrD9tV2OlluOc+CNsDSs8GJ5WVa/ZBXCeVGX2qwZKO8a3nwnc81SpxO1zGlMo/Y2m6K0pDPnKQ==", + "type": "package", + "path": "runtime.any.system.threading.timer/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/netstandard1.3/System.Threading.Timer.dll", + "lib/netstandard1.7/System.Threading.Timer.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.timer.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.threading.timer.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System/4.4.0-beta-24913-02": { + "sha512": "DtEYKhWPpIDQlWxyIWBiUK7Q3H2kPxVNLuOccIJY17tS1I4b0ya5FVc6WVj47Zg3SUvFuJhZzM7EqZsl5c4RWA==", + "type": "package", + "path": "runtime.native.system/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.native.system.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.4.0-beta-24913-02": { + "sha512": "J9TS90larMk0sgXUZQceCtbLzuYm3wHud/qBTLGYC5Yd6ntuZCifJxQd7QhM5jykR2u06aPCkKiv9bodz16tyw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.unix.Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "sha512": "ErIf7An6edPAgcSJcLZAYH8KEr2Aqi2H47K860JKyXLnwK0G047ksS8VtVg0v9z2cs3p+YTLTDD6dFLbg3RLpg==", + "type": "package", + "path": "runtime.unix.microsoft.win32.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.microsoft.win32.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.microsoft.win32.primitives.nuspec", + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Primitives.dll", + "runtimes/unix/lib/netstandard1.7/Microsoft.Win32.Primitives.dll", + "runtimes/unix/lib/uap10.1/Microsoft.Win32.Primitives.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Console/4.4.0-beta-24913-02": { + "sha512": "bVyMROOfEqc/7fRDnearZ6Jpeq/Psc+EFe/srfRQeVuFLMXT6cxaCvUk+4gHJisdSZQCleIdlIy4VoS/Tdvs7w==", + "type": "package", + "path": "runtime.unix.system.console/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.console.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.console.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Console.dll", + "runtimes/unix/lib/netstandard1.7/System.Console.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "sha512": "M95VkuwoXStqkCny6RJK1pECnFevEqkrvlDjyouEUXJneIB4qSH0LHH9rfrmhQosE+Z5m3KQIh1wCGneZ932Zg==", + "type": "package", + "path": "runtime.unix.system.diagnostics.debug/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.diagnostics.debug.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.diagnostics.debug.nuspec", + "runtimes/unix-corert/lib/netcoreapp1.2/System.Diagnostics.Debug.dll", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.Debug.dll", + "runtimes/unix/lib/netstandard1.7/System.Diagnostics.Debug.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.IO.FileSystem/4.4.0-beta-24913-02": { + "sha512": "4E0WH3D3D7uAHImAj3zQBRuYHSfUrCvdyv75+TuvTLw6RKPtoBR8Jq0mVAXIqshvrUfHCyBzv+cn5oY2BrBSRA==", + "type": "package", + "path": "runtime.unix.system.io.filesystem/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.io.filesystem.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.io.filesystem.nuspec", + "runtimes/unix/lib/netstandard1.3/System.IO.FileSystem.dll", + "runtimes/unix/lib/netstandard1.7/System.IO.FileSystem.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Net.Primitives/4.4.0-beta-24913-02": { + "sha512": "DBOmYuPH4khZftILHrquXZTda5PiTaBsWejwwtYtZsvUPZtF0nYmsjbCrOycbGWzS4gFZoU6vqD4dMbku4/ZEg==", + "type": "package", + "path": "runtime.unix.system.net.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.net.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.net.primitives.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Net.Primitives.dll", + "runtimes/unix/lib/netstandard1.7/System.Net.Primitives.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Net.Sockets/4.4.0-beta-24913-02": { + "sha512": "vl7Lz6dnOa+xi/WUUsZ1G3TFhroPkPrWKWVSUGg9E6mGcK5m2VqCbqcWwneYehgallbBMLOEmL7nsq+1XXCGWQ==", + "type": "package", + "path": "runtime.unix.system.net.sockets/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.net.sockets.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.net.sockets.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Net.Sockets.dll", + "runtimes/unix/lib/netstandard1.7/System.Net.Sockets.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Private.Uri/4.4.0-beta-24913-02": { + "sha512": "CM/S/SEyzccTOXKa+HAnUpAKlqspZRgfYbEQWKxTpm3iljXcj5aWuoaZFAav3Rts34FS6A7m+zCUgJeRKFGzPQ==", + "type": "package", + "path": "runtime.unix.system.private.uri/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.private.uri.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.private.uri.nuspec", + "runtimes/unix-corert/lib/netcoreapp1.2/System.Private.Uri.dll", + "runtimes/unix/lib/netstandard1.0/System.Private.Uri.dll", + "runtimes/unix/lib/uap10.1/System.Private.Uri.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Runtime.Extensions/4.4.0-beta-24913-02": { + "sha512": "SbmnGceBoHRqOLVdRdgdOd9UKizKVmwlBpbww67Hju5rUbMdOv4AdkoHrFm+Ee7kO0xHumYHlTuenmXmuFRW4Q==", + "type": "package", + "path": "runtime.unix.system.runtime.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.runtime.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.runtime.extensions.nuspec", + "runtimes/unix-corert/lib/netcoreapp1.2/System.Runtime.Extensions.dll", + "runtimes/unix/lib/netstandard1.5/System.Runtime.Extensions.dll", + "runtimes/unix/lib/netstandard1.7/System.Runtime.Extensions.dll", + "runtimes/unix/lib/uap10.1/System.Runtime.Extensions.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.3.0": { + "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "type": "package", + "path": "system.buffers/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/.xml", + "lib/netstandard1.1/System.Buffers.dll", + "system.buffers.4.3.0.nupkg.sha512", + "system.buffers.nuspec" + ] + }, + "System.Buffers/4.4.0-beta-24913-02": { + "sha512": "759YUTLvoV/0Y8oIp+yiPruR79AB+g5q+DqhDfNBjX1UxG7mAiemru5zEKMHEUBmj19nuDpwO1VXeFw/LfqYjw==", + "type": "package", + "path": "system.buffers/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netcoreapp1.1/.xml", + "lib/netcoreapp1.1/System.Buffers.dll", + "lib/netstandard1.1/.xml", + "lib/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.dll", + "system.buffers.4.4.0-beta-24913-02.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.4.0-beta-24913-02": { + "sha512": "Y9+bO37c8uVvXqkNGm90t2geVYeaEkWjMTgOkq6CkOOAtF5BpqKTvwnelXWP2pmL5fSqAMvPhsN/UXkTTxgMRA==", + "type": "package", + "path": "system.collections/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Collections.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Collections.dll", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netcoreapp1.1/System.Collections.dll", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/netstandard1.7/System.Collections.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Collections.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.4.0-beta-24913-02.nupkg.sha512", + "system.collections.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections.Concurrent/4.4.0-beta-24913-02": { + "sha512": "eky+QV4xCtubhbJk62uICQ4iygDnhoU7ojHRZbog5bqhjGWHtzvLdLu9nBu7YPKh7GDzk2ZHfL9uNECo8kKcdA==", + "type": "package", + "path": "system.collections.concurrent/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/netstandard1.7/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netcoreapp1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.4.0-beta-24913-02.nupkg.sha512", + "system.collections.concurrent.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections.Immutable/1.1.37": { + "sha512": "fTpqwZYBzoklTT+XjTRK8KxvmrGkYHzBiylCcKyQcxiOM8k+QvhNBxRvFHDWzy4OEP5f8/9n+xQ9mEgEXY+muA==", + "type": "package", + "path": "system.collections.immutable/1.1.37", + "files": [ + ".nupkg.metadata", + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.1.1.37.nupkg.sha512", + "system.collections.immutable.nuspec" + ] + }, + "System.Console/4.4.0-beta-24913-02": { + "sha512": "AiRso5v4Rbn6JgfRevPTZ0q+bpkfuAGQtkk4Aiuu+np3c4mEdHrW/ippOuSmIQJmvyHVEg9TQxpjrjcZUhLvkw==", + "type": "package", + "path": "system.console/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/net463/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/net463/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/netstandard1.7/System.Console.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.4.0-beta-24913-02.nupkg.sha512", + "system.console.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "sha512": "1JrMoPGopozBemABZVZvaXpPjXPqboGsxyZE+r8iuaJuU6nCVpxIvZf9LTkDZdXvdzA6UN8gNyo5JVkTpDRrtQ==", + "type": "package", + "path": "system.diagnostics.debug/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Diagnostics.Debug.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.7/System.Diagnostics.Debug.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net463/System.Diagnostics.Debug.dll", + "system.diagnostics.debug.4.4.0-beta-24913-02.nupkg.sha512", + "system.diagnostics.debug.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "sha512": "dupkxZ5nLUDX8e9OqQ1XqPJM54UZo3XGRiFeqdF/a59R90KbVSmmhqT4RPwa92fi4Unr401DQXMDBEVLLmJo9w==", + "type": "package", + "path": "system.diagnostics.tracing/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.7/System.Diagnostics.Tracing.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.4.0-beta-24913-02.nupkg.sha512", + "system.diagnostics.tracing.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Dynamic.Runtime/4.4.0-beta-24913-02": { + "sha512": "mbTmaXJ97fHhsbgzaZILTYCp1roBgOXoHhaN1hTmR/To9EEKNGERX61hVP099pAACklnPyrVrEFBZdEEAkXzDg==", + "type": "package", + "path": "system.dynamic.runtime/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Dynamic.Runtime.dll", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.dll", + "lib/netstandard1.7/System.Dynamic.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.7/System.Dynamic.Runtime.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.4.0-beta-24913-02.nupkg.sha512", + "system.dynamic.runtime.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Globalization/4.4.0-beta-24913-02": { + "sha512": "KxBYuqGY1P0LBAn1uXLyiYf3qXiNlhDCfCtLBemYA7mouGqqs+YPgYo2WuI5pqGU6VjAWiQvAT6PeNhofDvTHw==", + "type": "package", + "path": "system.globalization/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Globalization.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Globalization.dll", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/netstandard1.7/System.Globalization.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Globalization.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.4.0-beta-24913-02.nupkg.sha512", + "system.globalization.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.IO/4.4.0-beta-24913-02": { + "sha512": "BEqLHSTjhsWFdxz0q5OYlFc2Ic7NcWbKrn13IulLnRpF9yJClv3W2CxSHPq2IB48qKvODoYO9wEKax74+JK8eg==", + "type": "package", + "path": "system.io/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netcoreapp1.1/System.IO.dll", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/netstandard1.7/System.IO.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.IO.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.4.0-beta-24913-02.nupkg.sha512", + "system.io.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.4.0-beta-24913-02": { + "sha512": "DvhfpfWgOwoxyjPNYKhMV0xZuqGdznnaC7aIMzBc2oh+u19jZrloGl11P2DnFKJLfsth5DPLvTMxXmvKLeuykw==", + "type": "package", + "path": "system.io.filesystem/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/net463/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/net463/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/netstandard1.7/System.IO.FileSystem.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.4.0-beta-24913-02.nupkg.sha512", + "system.io.filesystem.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.FileSystem.Primitives/4.4.0-beta-24913-02": { + "sha512": "wRiqs3kiUczfE2pBubg2o3u06yQeUeqZruZG8ckw5/QJHRMCcnSaf//dyhJs+Qnq7uOYVoI2p8rEnYjm6w9omw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/net463/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.7/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/net463/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.7/System.IO.FileSystem.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "system.io.filesystem.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq/4.4.0-beta-24913-02": { + "sha512": "bjnCiY6U3f9k7fH/R3IQohZniRlLB3MdQ59n0nH8oa26YCFZO+OgjdVbSj67RgVpxupYLzXCZ80li32HcL4qdQ==", + "type": "package", + "path": "system.linq/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netcoreapp1.1/System.Linq.dll", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.4.0-beta-24913-02.nupkg.sha512", + "system.linq.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq.Expressions/4.4.0-beta-24913-02": { + "sha512": "FGRSqzfppwrXJSO+91Bi3BEOV1xejk/VHOL3bZRJYCshZ67t8s5OeOk8ywh96Xi12+RFIsXkIzJYBBYC3xV/ow==", + "type": "package", + "path": "system.linq.expressions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/netstandard1.7/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.7/System.Linq.Expressions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.4.0-beta-24913-02.nupkg.sha512", + "system.linq.expressions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.NameResolution/4.4.0-beta-24913-02": { + "sha512": "xTSaAEadOMDmmGLv60VMP1GtqMq++l23ld96Rg3X/Sphde1FFLB9nUetcoWx7VwfC5sJ1m70YprLKXDS4PNG8A==", + "type": "package", + "path": "system.net.nameresolution/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.NameResolution.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.xml", + "ref/netstandard1.3/de/System.Net.NameResolution.xml", + "ref/netstandard1.3/es/System.Net.NameResolution.xml", + "ref/netstandard1.3/fr/System.Net.NameResolution.xml", + "ref/netstandard1.3/it/System.Net.NameResolution.xml", + "ref/netstandard1.3/ja/System.Net.NameResolution.xml", + "ref/netstandard1.3/ko/System.Net.NameResolution.xml", + "ref/netstandard1.3/ru/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", + "runtimes/win/lib/net46/System.Net.NameResolution.dll", + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll", + "system.net.nameresolution.4.4.0-beta-24913-02.nupkg.sha512", + "system.net.nameresolution.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.Numerics.Vectors/4.4.0-preview2-25302-03": { + "sha512": "8QCHEbxpQaW7K3HKiPxR50dy2XysCe+7ihR7C6GCTSg8ZKWZiG8ESQfWTiDtwh8rL3NANrHVf6snjzeQZZpcog==", + "type": "package", + "path": "system.numerics.vectors/4.4.0-preview2-25302-03", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/netstandard2.0/System.Numerics.Vectors.dll", + "lib/netstandard2.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", + "lib/uap10.1/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", + "ref/netstandard2.0/System.Numerics.Vectors.dll", + "ref/uap10.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.numerics.vectors.4.4.0-preview2-25302-03.nupkg.sha512", + "system.numerics.vectors.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ObjectModel/4.4.0-beta-24913-02": { + "sha512": "7fImkhTugA/dsFg/prA4UH7CoP4xmf7Brd5/v+dUA62mND9foQQnTOq0xSCOVZ6b25sy0kKqxLUtekZvRIMlkQ==", + "type": "package", + "path": "system.objectmodel/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.ObjectModel.dll", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/netstandard1.7/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netcoreapp1.1/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.7/System.ObjectModel.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.4.0-beta-24913-02.nupkg.sha512", + "system.objectmodel.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Private.Uri/4.4.0-beta-24913-02": { + "sha512": "P5WV/+fFObWRGhcbiUIx+23/hz4k/x6xFoePjam1t6xvKw+E1E4KkM8O2sRkZQ0h8i7ATr04oCi5jNnzg2+idg==", + "type": "package", + "path": "system.private.uri/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "system.private.uri.4.4.0-beta-24913-02.nupkg.sha512", + "system.private.uri.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection/4.4.0-beta-24913-02": { + "sha512": "BYjVZSHD4JDmhn5LueNSF16qU8WA6V2YAakX+q+U9lAlj/B+gV+l9vO2RkJjzexvDcZLluFzIUdpWDGtOj95wA==", + "type": "package", + "path": "system.reflection/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/netstandard1.7/System.Reflection.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Reflection.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit/4.4.0-beta-24913-02": { + "sha512": "8t9c/WJwVW4lM4furhRKIGDH4YIMnqWeo/tXktHJpczi6SiBpWfi+RymwRVbbxrPy7+b+jgtspwM0AHizm8hRg==", + "type": "package", + "path": "system.reflection.emit/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.emit.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit.ILGeneration/4.4.0-beta-24913-02": { + "sha512": "StjC21V2SztX1QUCMlwE1QfXXJhmmNJVu07DDLqj/fn6F23tIHB+EDcroeA7QKRQbfarUxL4MzZAJqEhcfPqYA==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Extensions/4.4.0-beta-24913-02": { + "sha512": "6f9M3xv5HkaZEbZLsjRSEHekr1bbEFUbtpr/8NHGJ3cwjdUmfirIwT3i69VxPy0xx9nj8OLbfGitQcPOUsK/sA==", + "type": "package", + "path": "system.reflection.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Reflection.Extensions.dll", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/netstandard1.3/System.Reflection.Extensions.dll", + "lib/netstandard1.7/System.Reflection.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.1/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.7/System.Reflection.Extensions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Reflection.Extensions.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll", + "runtimes/aot/lib/uap10.1/System.Reflection.Extensions.dll", + "system.reflection.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Metadata/1.1.0": { + "sha512": "RLIE4sSt2zngMLuqM6YmxBH99mTumtT4DNZE4+msfEaInUP5iCLQT+BHPl+2cjSAP1pdALyAjLB8RtCB+WGGWQ==", + "type": "package", + "path": "system.reflection.metadata/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/dotnet5.2/System.Reflection.Metadata.dll", + "lib/dotnet5.2/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.1.1.0.nupkg.sha512", + "system.reflection.metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.4.0-beta-24913-02": { + "sha512": "qR0QeMteCI5xqH473N019aiA3kSrUYIsxHb5yD8EMeEY9ZQpDe7eETxaxm9mDtZsk5ykm3fboDda8cAsHqM5+w==", + "type": "package", + "path": "system.reflection.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Reflection.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/portable45-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.7/System.Reflection.Primitives.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/portable45-net45+win8+wpa81/_._", + "ref/uap10.1/System.Reflection.Primitives.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.TypeExtensions/4.4.0-preview2-25302-03": { + "sha512": "GSFwBW4h06Y2B14gBSQn2mXOClBEuKnycjdzvhsrLY+mQPieCtsP4AiOC95PV/8zwMM3rXLfjguERttLuKkibA==", + "type": "package", + "path": "system.reflection.typeextensions/4.4.0-preview2-25302-03", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net461/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netcoreapp1.0/System.Reflection.TypeExtensions.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/netstandard2.0/System.Reflection.TypeExtensions.dll", + "lib/uap10.1/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net461/System.Reflection.TypeExtensions.dll", + "ref/net461/System.Reflection.TypeExtensions.xml", + "ref/net461/de/System.Reflection.TypeExtensions.xml", + "ref/net461/es/System.Reflection.TypeExtensions.xml", + "ref/net461/fr/System.Reflection.TypeExtensions.xml", + "ref/net461/it/System.Reflection.TypeExtensions.xml", + "ref/net461/ja/System.Reflection.TypeExtensions.xml", + "ref/net461/ko/System.Reflection.TypeExtensions.xml", + "ref/net461/ru/System.Reflection.TypeExtensions.xml", + "ref/net461/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/net461/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/System.Reflection.TypeExtensions.dll", + "ref/netstandard2.0/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/uap10.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "runtimes/aot/lib/uap10.1/_._", + "runtimes/win/lib/net461/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.4.0-preview2-25302-03.nupkg.sha512", + "system.reflection.typeextensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "sha512": "zbswj86i6yoQyMybsHm16OPp5/uoWqTJX0X7QuguoBpOdBc7XJ9H68dvuRb4VUKh/WtbvUiftn2PnLCDC5gZxA==", + "type": "package", + "path": "system.resources.resourcemanager/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Resources.ResourceManager.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.7/System.Resources.ResourceManager.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.4.0-beta-24913-02.nupkg.sha512", + "system.resources.resourcemanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime/4.4.0-beta-24913-02": { + "sha512": "OjwRltLPQUMt7uJ4vQklRo1fFK9WsL10GMyFKB+SdZknqXzxpM3zThIjMFtiQJtf8hmXTQU8H0DkMWinTHroJw==", + "type": "package", + "path": "system.runtime/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netcoreapp1.1/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/netstandard1.7/System.Runtime.dll", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/uap10.1/System.Runtime.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Extensions/4.4.0-beta-24913-02": { + "sha512": "v1XLBAT4zvJdo4pP6wXvasll7+0v/B0X+TNueBfqsprfP0xGPOm8TOUB2ln/djZrnz/AWSOLlevjIFs6PhJD+Q==", + "type": "package", + "path": "system.runtime.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netcoreapp1.1/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.7/System.Runtime.Extensions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Runtime.Extensions.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/uap10.1/System.Runtime.Extensions.dll", + "runtimes/win/lib/net461/System.Runtime.Extensions.dll", + "system.runtime.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Handles/4.4.0-beta-24913-02": { + "sha512": "5Z5jTG+Lx8ttF1ukhKhF5cMyNbfZqsYhp8HFg6sHZojo0vPfeXYce0eRHiWkPxcZ1yHVz6V/l7iBPJIDR4nC8Q==", + "type": "package", + "path": "system.runtime.handles/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/net463/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/net463/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/netstandard1.7/System.Runtime.Handles.dll", + "ref/uap10.1/System.Runtime.Handles.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.handles.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "sha512": "T7Tv7MQGriQdoTjyztjsICDhQrsoIE4DH5yu+UlUnH5Ze+h3SRTJSdnOsXVnsA5bjq7jDTm7aFJM47KYBYi1vA==", + "type": "package", + "path": "system.runtime.interopservices/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.7/System.Runtime.InteropServices.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/uap10.1/System.Runtime.InteropServices.dll", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.interopservices.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.4.0-beta-24913-02": { + "sha512": "fdLF4k7ByLmJsRvifhthFQ+y4Fb+SmOeKlcbagzBKhKORu+JFnj9P3eGHIIcTXlzIrqPNhCvqoaGCNJBwPAWXA==", + "type": "package", + "path": "system.runtime.numerics/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Runtime.Numerics.dll", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/netstandard1.7/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.7/System.Runtime.Numerics.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.numerics.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==", + "type": "package", + "path": "system.runtime.serialization.formatters/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Runtime.Serialization.Formatters.dll", + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Runtime.Serialization.Formatters.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.serialization.formatters.4.3.0.nupkg.sha512", + "system.runtime.serialization.formatters.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Primitives.dll", + "lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "system.runtime.serialization.primitives.4.3.0.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec" + ] + }, + "System.Security.Claims/4.4.0-beta-24913-02": { + "sha512": "/PPqq7MEKJvP8kE/ud4uzqvi4gYQICRMwQV2+hxJkd2A9vKyGvDmpq2HbbMPO6U2lMTwdMUmdUm7HgEoCcy6kw==", + "type": "package", + "path": "system.security.claims/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/net463/System.Security.Claims.dll", + "lib/netstandard1.3/System.Security.Claims.dll", + "lib/netstandard1.7/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/net463/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.xml", + "ref/netstandard1.3/de/System.Security.Claims.xml", + "ref/netstandard1.3/es/System.Security.Claims.xml", + "ref/netstandard1.3/fr/System.Security.Claims.xml", + "ref/netstandard1.3/it/System.Security.Claims.xml", + "ref/netstandard1.3/ja/System.Security.Claims.xml", + "ref/netstandard1.3/ko/System.Security.Claims.xml", + "ref/netstandard1.3/ru/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hans/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hant/System.Security.Claims.xml", + "ref/netstandard1.7/System.Security.Claims.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.claims.4.4.0-beta-24913-02.nupkg.sha512", + "system.security.claims.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Algorithms/4.4.0-beta-24913-02": { + "sha512": "hDt9rI+9j/bhkKKMQ4mAZO3Z1hd3VpUW44aMJ/9RI43ONmwaQQBmrV3UK+xFXUhRvmRFNDXfd1aswsiGLWjvYw==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.7/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/osx/lib/netstandard1.7/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.7/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.7/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.4.0-beta-24913-02.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.4.0-beta-24913-02": { + "sha512": "xVidqKLfhOomdqKs84jltdeCLDGT9AkA0zhQCf9W+OcMn1yZ0hkHYZovVaVwFuFvqa2bKqyKAxzUlduaQzGKig==", + "type": "package", + "path": "system.security.cryptography.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/net463/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.7/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/net463/System.Security.Cryptography.Primitives.dll", + "ref/netcoreapp1.1/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.7/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "system.security.cryptography.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Principal/4.4.0-beta-24913-02": { + "sha512": "OSfvB2svUkTf3TgH2NRsZT+EOqSt57SgjQ7fahG2ahH/JFHLxfNdCnYV8l1FFjAJzHcCS6ExQvhq0wIAoa/wmA==", + "type": "package", + "path": "system.security.principal/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Security.Principal.dll", + "lib/netcore50/System.Security.Principal.dll", + "lib/netstandard1.0/System.Security.Principal.dll", + "lib/netstandard1.7/System.Security.Principal.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.1/System.Security.Principal.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/netcore50/de/System.Security.Principal.xml", + "ref/netcore50/es/System.Security.Principal.xml", + "ref/netcore50/fr/System.Security.Principal.xml", + "ref/netcore50/it/System.Security.Principal.xml", + "ref/netcore50/ja/System.Security.Principal.xml", + "ref/netcore50/ko/System.Security.Principal.xml", + "ref/netcore50/ru/System.Security.Principal.xml", + "ref/netcore50/zh-hans/System.Security.Principal.xml", + "ref/netcore50/zh-hant/System.Security.Principal.xml", + "ref/netstandard1.0/System.Security.Principal.dll", + "ref/netstandard1.0/System.Security.Principal.xml", + "ref/netstandard1.0/de/System.Security.Principal.xml", + "ref/netstandard1.0/es/System.Security.Principal.xml", + "ref/netstandard1.0/fr/System.Security.Principal.xml", + "ref/netstandard1.0/it/System.Security.Principal.xml", + "ref/netstandard1.0/ja/System.Security.Principal.xml", + "ref/netstandard1.0/ko/System.Security.Principal.xml", + "ref/netstandard1.0/ru/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hans/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hant/System.Security.Principal.xml", + "ref/netstandard1.7/System.Security.Principal.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Security.Principal.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/uap10.1/System.Security.Principal.dll", + "system.security.principal.4.4.0-beta-24913-02.nupkg.sha512", + "system.security.principal.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.4.0-beta-24913-02": { + "sha512": "ZHYzVfmY8hv2VGl8zLEI5tG3m5tZgoToMNq84ZZR3zUpFjKMaKVviIN+1r+5C+f6Xyw7T45sGMmdMya69P+bnA==", + "type": "package", + "path": "system.security.principal.windows/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net463/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net463/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard1.7/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netstandard1.7/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net463/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.7/System.Security.Principal.Windows.dll", + "system.security.principal.windows.4.4.0-beta-24913-02.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.4.0-beta-24913-02": { + "sha512": "+IM39s4C1QMr/qKpiVlLOr+FIfyXVTe7tpIx39hoTcAvZY+sXhMMS5ErJeJdaSMZgL5ZyGzcuxkfeAYDKloW6w==", + "type": "package", + "path": "system.text.encoding/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.Encoding.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.7/System.Text.Encoding.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Text.Encoding.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.4.0-beta-24913-02.nupkg.sha512", + "system.text.encoding.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "sha512": "jK3sE8t8Ngi1hSKmPI1RGXaqdtCT6dPPvfrFWDn8u45r6Zh4RJk4962v6AU5saxkssCfTiVhqDK+Drageb5mJA==", + "type": "package", + "path": "system.text.encoding.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.Encoding.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.7/System.Text.Encoding.Extensions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.text.encoding.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.RegularExpressions/4.4.0-beta-24913-02": { + "sha512": "eb/QjBezP1/UbivTA+xpNakEST/xnm1/yc563KRUINfsZ+Owz3By8ofAV2S94usp087bWls5v1sX4rZAjuTuxg==", + "type": "package", + "path": "system.text.regularexpressions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/netstandard1.7/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.7/System.Text.RegularExpressions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.4.0-beta-24913-02.nupkg.sha512", + "system.text.regularexpressions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading/4.4.0-beta-24913-02": { + "sha512": "IDvvo0zC8/kGPUnj2l79COn+vizKPxDoJ9BcLMo5R8H7CImr4t98kZyChhY1lu2PZfxo/t+4QrtXDgZflWnPkw==", + "type": "package", + "path": "system.threading/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Threading.dll", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/netstandard1.7/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Threading.dll", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/netstandard1.7/System.Threading.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks/4.4.0-beta-24913-02": { + "sha512": "tphb/t923mWZs75EwmJg6CEB5fgC2YRItN37XvPjANv9FmCxo9THV+eD8/Fdw2SxeyZ9nJtgupbk076ZAvTV1A==", + "type": "package", + "path": "system.threading.tasks/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Threading.Tasks.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.7/System.Threading.Tasks.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Threading.Tasks.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.tasks.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", + "type": "package", + "path": "system.threading.tasks.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "system.threading.tasks.extensions.4.3.0.nupkg.sha512", + "system.threading.tasks.extensions.nuspec" + ] + }, + "System.Threading.Tasks.Parallel/4.4.0-beta-24913-02": { + "sha512": "osOWN3xRHMIqXMB7YNYiMLxsl9orwUrxA+WB0ujcYXjoORyrel7L1iCz5mLdZT0o4AMH0Ps6GSIM0pYtm+PVOQ==", + "type": "package", + "path": "system.threading.tasks.parallel/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.Parallel.dll", + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.Parallel.dll", + "ref/netcore50/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/de/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/es/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/it/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll", + "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.parallel.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.tasks.parallel.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Thread/4.4.0-beta-24913-02": { + "sha512": "kO2WQOh0cJd6Yoc9JJAeBWkuKHeI/Tgg0nPyPUIihsGDTzc3G0uGeEjF4MjBi/EKly9objpgAP9sLrGIgUt3fw==", + "type": "package", + "path": "system.threading.thread/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.Thread.dll", + "lib/net461/System.Threading.Thread.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.Thread.dll", + "lib/netstandard1.7/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.Thread.dll", + "ref/net461/System.Threading.Thread.dll", + "ref/netstandard1.3/System.Threading.Thread.dll", + "ref/netstandard1.3/System.Threading.Thread.xml", + "ref/netstandard1.3/de/System.Threading.Thread.xml", + "ref/netstandard1.3/es/System.Threading.Thread.xml", + "ref/netstandard1.3/fr/System.Threading.Thread.xml", + "ref/netstandard1.3/it/System.Threading.Thread.xml", + "ref/netstandard1.3/ja/System.Threading.Thread.xml", + "ref/netstandard1.3/ko/System.Threading.Thread.xml", + "ref/netstandard1.3/ru/System.Threading.Thread.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml", + "ref/netstandard1.7/System.Threading.Thread.dll", + "ref/uap10.1/System.Threading.Thread.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/uap10.1/System.Threading.Thread.dll", + "runtimes/unix/lib/netstandard1.7/System.Threading.Thread.dll", + "runtimes/unix/lib/uap10.1/System.Threading.Thread.dll", + "runtimes/win/lib/netstandard1.7/System.Threading.Thread.dll", + "runtimes/win/lib/uap10.1/System.Threading.Thread.dll", + "system.threading.thread.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.thread.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.ThreadPool/4.4.0-beta-24913-02": { + "sha512": "lD4kymw3NHChTiqHFH9zxVvfTY8uLBy34KdBP661x8FIeiN78DwQEKMVZOQ2zZ/ThmARWxG4E7YzH1NOkJacGQ==", + "type": "package", + "path": "system.threading.threadpool/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.ThreadPool.dll", + "lib/net463/System.Threading.ThreadPool.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.ThreadPool.dll", + "lib/netstandard1.7/System.Threading.ThreadPool.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.ThreadPool.dll", + "ref/net463/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/de/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/es/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/it/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml", + "ref/netstandard1.7/System.Threading.ThreadPool.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.threadpool.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.threadpool.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.ValueTuple/4.3.1": { + "sha512": "xzDmg26Wb2x2rFDjwziaMYQJqxhrK+b4OUC008o7CnZhUMb2p5XfwgOgAQ/WlKhqxMUSDWRUm5/lNTKdh27pJA==", + "type": "package", + "path": "system.valuetuple/4.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netstandard1.0/.xml", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/.xml", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.3.1.nupkg.sha512", + "system.valuetuple.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.3.0": { + "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "type": "package", + "path": "system.xml.xmldocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.3.0.nupkg.sha512", + "system.xml.xmldocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.3.0": { + "sha512": "MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==", + "type": "package", + "path": "system.xml.xmlserializer/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "lib/netstandard1.3/System.Xml.XmlSerializer.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XmlSerializer.dll", + "ref/netcore50/System.Xml.XmlSerializer.xml", + "ref/netcore50/de/System.Xml.XmlSerializer.xml", + "ref/netcore50/es/System.Xml.XmlSerializer.xml", + "ref/netcore50/fr/System.Xml.XmlSerializer.xml", + "ref/netcore50/it/System.Xml.XmlSerializer.xml", + "ref/netcore50/ja/System.Xml.XmlSerializer.xml", + "ref/netcore50/ko/System.Xml.XmlSerializer.xml", + "ref/netcore50/ru/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/System.Xml.XmlSerializer.dll", + "ref/netstandard1.0/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/de/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/es/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/it/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/System.Xml.XmlSerializer.dll", + "ref/netstandard1.3/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/de/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/es/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/it/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "system.xml.xmlserializer.4.3.0.nupkg.sha512", + "system.xml.xmlserializer.nuspec" + ] + }, + "xunit/2.4.1-pre.build.4059": { + "sha512": "Kt50VVI9yqbPLPICi1J2Sl2zoidhyMqbT+ywCSINDDXCJhVOXVBoE/1geWui5Sppx8Cv5U0DmYCLxveaOB0mLw==", + "type": "package", + "path": "xunit/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "xunit.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.nuspec" + ] + }, + "xunit.abstractions/2.0.3": { + "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", + "type": "package", + "path": "xunit.abstractions/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/netstandard1.0/xunit.abstractions.dll", + "lib/netstandard1.0/xunit.abstractions.xml", + "lib/netstandard2.0/xunit.abstractions.dll", + "lib/netstandard2.0/xunit.abstractions.xml", + "xunit.abstractions.2.0.3.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.analyzers/0.10.0": { + "sha512": "4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg==", + "type": "package", + "path": "xunit.analyzers/0.10.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/xunit.analyzers.dll", + "tools/install.ps1", + "tools/uninstall.ps1", + "xunit.analyzers.0.10.0.nupkg.sha512", + "xunit.analyzers.nuspec" + ] + }, + "xunit.assert/2.4.1-pre.build.4059": { + "sha512": "PrfmhpgBTilGWP4DC6Q2FV17TEfTpnCARMjYNMQvUF1IFV5DhXNU5ChC0JeL17ctp89krn4Pld4/Wiuq4ILMxw==", + "type": "package", + "path": "xunit.assert/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.1/xunit.assert.dll", + "lib/netstandard1.1/xunit.assert.xml", + "lib/netstandard2.0/xunit.assert.dll", + "lib/netstandard2.0/xunit.assert.xml", + "xunit.assert.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.core/2.4.1-pre.build.4059": { + "sha512": "nQh89ZP+wmC79euBg5p/6Jr8rugPTQo/GAx9Wry2Pgu9q4ltDv9XeQTqsQE/trvqOjyrTRtCOQT1P+vcufj0Kg==", + "type": "package", + "path": "xunit.core/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/xunit.core.props", + "build/xunit.core.targets", + "buildMultiTargeting/xunit.core.props", + "buildMultiTargeting/xunit.core.targets", + "xunit.core.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.core.nuspec" + ] + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "sha512": "MpnCaHPR67FdYgdkbzuSIxtYdGJaY6WwjotyvifGKcy94M3Rm2eCQqKQsFSN1TbcRhHRCweOo24+E+wnGxjuTw==", + "type": "package", + "path": "xunit.extensibility.core/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/xunit.core.dll", + "lib/net452/xunit.core.dll.tdnet", + "lib/net452/xunit.core.xml", + "lib/net452/xunit.runner.tdnet.dll", + "lib/net452/xunit.runner.utility.net452.dll", + "lib/netstandard1.1/xunit.core.dll", + "lib/netstandard1.1/xunit.core.xml", + "lib/netstandard2.0/xunit.core.dll", + "lib/netstandard2.0/xunit.core.xml", + "xunit.extensibility.core.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "sha512": "sLmjOlIAAs4omfY/019PQMXWkxpxd/CfVnTEMBBEN89fU/bPfeoNRBjnqJ54tHpK2xDCPUye19PNSFH4aW6B8Q==", + "type": "package", + "path": "xunit.extensibility.execution/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/xunit.execution.desktop.dll", + "lib/net452/xunit.execution.desktop.xml", + "lib/netstandard1.1/xunit.execution.dotnet.dll", + "lib/netstandard1.1/xunit.execution.dotnet.xml", + "lib/netstandard2.0/xunit.execution.dotnet.dll", + "lib/netstandard2.0/xunit.execution.dotnet.xml", + "xunit.extensibility.execution.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "sha512": "FBASqurcvUoVQ52vY2LH4XUf1/Hkz9wmcuBj5IqIhEpgK+YjhWePepguSlpSre44hhhWNe5WO3XIrZ6pGTbyng==", + "type": "package", + "path": "xunit.performance.api/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.api.dll", + "lib/net461/xunit.performance.api.xml", + "lib/netstandard1.5/xunit.performance.api.dll", + "lib/netstandard1.5/xunit.performance.api.xml", + "xunit.performance.api.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.api.nuspec" + ] + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "sha512": "1CEv1zleRb8D0mDckZjpR8VPaP+2YSeMUAnnb/a3aL0DrG9IEeTN2Uu+30IaX/OHG7iuqLX9zWja+sey76Us0w==", + "type": "package", + "path": "xunit.performance.core/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/netstandard1.3/xunit.performance.core.dll", + "lib/netstandard1.3/xunit.performance.core.xml", + "xunit.performance.core.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.core.nuspec" + ] + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "sha512": "hfNLz/+fA1CqHPQWexPoQBDMs1y1x8gdy1WgQH1nUG5Jf1KVviUddy3+MCTEbuELyqrcLpkR/p57WLUAYKwhCw==", + "type": "package", + "path": "xunit.performance.execution/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.execution.dll", + "lib/net461/xunit.performance.execution.xml", + "lib/netstandard1.5/xunit.performance.execution.dll", + "lib/netstandard1.5/xunit.performance.execution.xml", + "xunit.performance.execution.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.execution.nuspec" + ] + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "sha512": "VWtijjK9HfQvx2nmQ15hEAtBdHEmWSVk0Gc60+yEF+xMq/wZmD0jSvCykW5Jz0ponX88Z6RU39ZjRDq+vLnCgg==", + "type": "package", + "path": "xunit.performance.metrics/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.metrics.dll", + "lib/net461/xunit.performance.metrics.xml", + "lib/netstandard1.5/xunit.performance.metrics.dll", + "lib/netstandard1.5/xunit.performance.metrics.xml", + "xunit.performance.metrics.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.metrics.nuspec" + ] + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "sha512": "oWTxKNZbtkn8HBHi59zxTRP4y80SlaOqFOu+ausTLOyOPr7/aZ39U6L9F8mh69890NRbW2Qcd/UdP3YvPsseHw==", + "type": "package", + "path": "xunit.runner.console/2.4.1-pre.build.4059", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/xunit.runner.console.props", + "tools/net452/xunit.abstractions.dll", + "tools/net452/xunit.console.exe", + "tools/net452/xunit.console.exe.config", + "tools/net452/xunit.console.x86.exe", + "tools/net452/xunit.console.x86.exe.config", + "tools/net452/xunit.runner.reporters.net452.dll", + "tools/net452/xunit.runner.utility.net452.dll", + "tools/net46/xunit.abstractions.dll", + "tools/net46/xunit.console.exe", + "tools/net46/xunit.console.exe.config", + "tools/net46/xunit.console.x86.exe", + "tools/net46/xunit.console.x86.exe.config", + "tools/net46/xunit.runner.reporters.net452.dll", + "tools/net46/xunit.runner.utility.net452.dll", + "tools/net461/xunit.abstractions.dll", + "tools/net461/xunit.console.exe", + "tools/net461/xunit.console.exe.config", + "tools/net461/xunit.console.x86.exe", + "tools/net461/xunit.console.x86.exe.config", + "tools/net461/xunit.runner.reporters.net452.dll", + "tools/net461/xunit.runner.utility.net452.dll", + "tools/net462/xunit.abstractions.dll", + "tools/net462/xunit.console.exe", + "tools/net462/xunit.console.exe.config", + "tools/net462/xunit.console.x86.exe", + "tools/net462/xunit.console.x86.exe.config", + "tools/net462/xunit.runner.reporters.net452.dll", + "tools/net462/xunit.runner.utility.net452.dll", + "tools/net47/xunit.abstractions.dll", + "tools/net47/xunit.console.exe", + "tools/net47/xunit.console.exe.config", + "tools/net47/xunit.console.x86.exe", + "tools/net47/xunit.console.x86.exe.config", + "tools/net47/xunit.runner.reporters.net452.dll", + "tools/net47/xunit.runner.utility.net452.dll", + "tools/net471/xunit.abstractions.dll", + "tools/net471/xunit.console.exe", + "tools/net471/xunit.console.exe.config", + "tools/net471/xunit.console.x86.exe", + "tools/net471/xunit.console.x86.exe.config", + "tools/net471/xunit.runner.reporters.net452.dll", + "tools/net471/xunit.runner.utility.net452.dll", + "tools/net472/xunit.abstractions.dll", + "tools/net472/xunit.console.exe", + "tools/net472/xunit.console.exe.config", + "tools/net472/xunit.console.x86.exe", + "tools/net472/xunit.console.x86.exe.config", + "tools/net472/xunit.runner.reporters.net452.dll", + "tools/net472/xunit.runner.utility.net452.dll", + "tools/netcoreapp1.0/xunit.abstractions.dll", + "tools/netcoreapp1.0/xunit.console.deps.json", + "tools/netcoreapp1.0/xunit.console.dll", + "tools/netcoreapp1.0/xunit.console.dll.config", + "tools/netcoreapp1.0/xunit.console.runtimeconfig.json", + "tools/netcoreapp1.0/xunit.runner.reporters.netcoreapp10.dll", + "tools/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll", + "tools/netcoreapp1.0/xunit.runner.utility.netcoreapp10.xml", + "tools/netcoreapp2.0/xunit.abstractions.dll", + "tools/netcoreapp2.0/xunit.console.deps.json", + "tools/netcoreapp2.0/xunit.console.dll", + "tools/netcoreapp2.0/xunit.console.dll.config", + "tools/netcoreapp2.0/xunit.console.runtimeconfig.json", + "tools/netcoreapp2.0/xunit.runner.reporters.netcoreapp10.dll", + "tools/netcoreapp2.0/xunit.runner.utility.netcoreapp10.dll", + "tools/netcoreapp2.0/xunit.runner.utility.netcoreapp10.xml", + "xunit.runner.console.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.runner.console.nuspec" + ] + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "sha512": "YyTcFxooSkYo9gr8HgLhHZ7T5PHjnCLC9dGXgbLwMCNZeqO+DzY8nWehE++FasEwMAlUv87MLhLEVXoVvMQtKQ==", + "type": "package", + "path": "xunit.runner.utility/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/xunit.runner.utility.net35.dll", + "lib/net35/xunit.runner.utility.net35.xml", + "lib/net452/xunit.runner.utility.net452.dll", + "lib/net452/xunit.runner.utility.net452.xml", + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll", + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.xml", + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll", + "lib/netstandard1.1/xunit.runner.utility.netstandard11.xml", + "lib/netstandard1.5/xunit.runner.utility.netstandard15.dll", + "lib/netstandard1.5/xunit.runner.utility.netstandard15.xml", + "lib/netstandard2.0/xunit.runner.utility.netstandard20.dll", + "lib/netstandard2.0/xunit.runner.utility.netstandard20.xml", + "lib/uap10.0/xunit.runner.utility.uwp10.dll", + "lib/uap10.0/xunit.runner.utility.uwp10.pri", + "lib/uap10.0/xunit.runner.utility.uwp10.xml", + "xunit.runner.utility.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + ".NETStandard,Version=v1.4": [ + "Microsoft.CodeAnalysis.Compilers >= 1.1.1", + "Microsoft.Diagnostics.Tracing.TraceEvent >= 2.0.43", + "Microsoft.NETCore.Platforms >= 3.1.0-preview3.19551.4", + "System.Console >= 4.4.0-beta-24913-02", + "System.Dynamic.Runtime >= 4.4.0-beta-24913-02", + "System.IO.FileSystem >= 4.4.0-beta-24913-02", + "System.Linq >= 4.4.0-beta-24913-02", + "System.Numerics.Vectors >= 4.4.0-preview2-25302-03", + "System.Reflection >= 4.4.0-beta-24913-02", + "System.Reflection.Extensions >= 4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions >= 4.4.0-preview2-25302-03", + "System.Runtime >= 4.4.0-beta-24913-02", + "System.Runtime.Extensions >= 4.4.0-beta-24913-02", + "System.Runtime.Numerics >= 4.4.0-beta-24913-02", + "System.Security.Cryptography.Algorithms >= 4.4.0-beta-24913-02", + "System.Text.RegularExpressions >= 4.4.0-beta-24913-02", + "System.Threading >= 4.4.0-beta-24913-02", + "System.Threading.Tasks >= 4.4.0-beta-24913-02", + "System.Threading.Tasks.Parallel >= 4.4.0-beta-24913-02", + "System.Threading.Thread >= 4.4.0-beta-24913-02", + "xunit >= 2.4.1-pre.build.4059", + "xunit.performance.api >= 1.0.0-beta-build0015", + "xunit.performance.core >= 1.0.0-beta-build0015", + "xunit.performance.execution >= 1.0.0-beta-build0015", + "xunit.performance.metrics >= 1.0.0-beta-build0015", + "xunit.runner.console >= 2.4.1-pre.build.4059", + "xunit.runner.utility >= 2.4.1-pre.build.4059" + ] + }, + "packageFolders": { + "/home/z/Dev/coreclr-sec/.packages": {} + }, + "project": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+roslyn/benchmark+roslyn.csproj", + "projectName": "benchmark+roslyn", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+roslyn/benchmark+roslyn.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+roslyn/obj-linux-x86", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netstandard1.4" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netstandard1.4": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netstandard1.4": { + "dependencies": { + "Microsoft.CodeAnalysis.Compilers": { + "target": "Package", + "version": "[1.1.1, )" + }, + "Microsoft.Diagnostics.Tracing.TraceEvent": { + "target": "Package", + "version": "[2.0.43, )" + }, + "Microsoft.NETCore.Platforms": { + "target": "Package", + "version": "[3.1.0-preview3.19551.4, )" + }, + "System.Console": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Dynamic.Runtime": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.IO.FileSystem": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Numerics.Vectors": { + "target": "Package", + "version": "[4.4.0-preview2-25302-03, )" + }, + "System.Reflection": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.TypeExtensions": { + "target": "Package", + "version": "[4.4.0-preview2-25302-03, )" + }, + "System.Runtime": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Numerics": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Security.Cryptography.Algorithms": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Text.RegularExpressions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Tasks": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Tasks.Parallel": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Thread": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.performance.api": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.core": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.execution": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.metrics": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.runner.console": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.runner.utility": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x86": { + "#import": [] + } + } + }, + "logs": [ + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> System.Numerics.Vectors 4.4.0-preview2-25302-03 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> System.Numerics.Vectors 4.4.0-preview2-25302-03 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> System.Numerics.Vectors 4.4.0-preview2-25302-03 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> System.Numerics.Vectors 4.4.0-preview2-25302-03 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> System.Numerics.Vectors 4.4.0-preview2-25302-03 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> System.Numerics.Vectors 4.4.0-preview2-25302-03 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+roslyn -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + } + ] +}
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+serialize/obj-linux-x64/benchmark+serialize.csproj.nuget.cache b/tests/src/JIT/config/benchmark+serialize/obj-linux-x64/benchmark+serialize.csproj.nuget.cache new file mode 100644 index 0000000000..0138f5527e --- /dev/null +++ b/tests/src/JIT/config/benchmark+serialize/obj-linux-x64/benchmark+serialize.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "/TdErBfsKsR6khced9rO9wgMZC0T0wYlYXGjGm98b3Fefee2b61nv/6z4OgjoPkyJHk/hTB00rogQjwNXpZx6A==", + "success": true +}
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+serialize/obj-linux-x64/benchmark+serialize.csproj.nuget.dgspec.json b/tests/src/JIT/config/benchmark+serialize/obj-linux-x64/benchmark+serialize.csproj.nuget.dgspec.json new file mode 100644 index 0000000000..b7a72040f8 --- /dev/null +++ b/tests/src/JIT/config/benchmark+serialize/obj-linux-x64/benchmark+serialize.csproj.nuget.dgspec.json @@ -0,0 +1,157 @@ +{ + "format": 1, + "restore": { + "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+serialize/benchmark+serialize.csproj": {} + }, + "projects": { + "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+serialize/benchmark+serialize.csproj": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+serialize/benchmark+serialize.csproj", + "projectName": "benchmark+serialize", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+serialize/benchmark+serialize.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+serialize/obj-linux-x64", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netstandard1.4" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netstandard1.4": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netstandard1.4": { + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": { + "target": "Package", + "version": "[2.0.43, )" + }, + "Microsoft.NETCore.Platforms": { + "target": "Package", + "version": "[3.1.0-preview3.19551.4, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[7.0.1, )" + }, + "System.Console": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Dynamic.Runtime": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.IO": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.IO.FileSystem": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.ObjectModel": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.TypeExtensions": { + "target": "Package", + "version": "[4.4.0-preview2-25302-03, )" + }, + "System.Runtime": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Serialization.Json": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Serialization.Primitives": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Serialization.Xml": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Text.RegularExpressions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Xml.XmlDocument": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Xml.XmlSerializer": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.performance.api": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.core": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.execution": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.metrics": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.runner.console": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.runner.utility": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x64": { + "#import": [] + } + } + } + } +}
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+serialize/obj-linux-x64/benchmark+serialize.csproj.nuget.g.props b/tests/src/JIT/config/benchmark+serialize/obj-linux-x64/benchmark+serialize.csproj.nuget.g.props new file mode 100644 index 0000000000..35c58cfef6 --- /dev/null +++ b/tests/src/JIT/config/benchmark+serialize/obj-linux-x64/benchmark+serialize.csproj.nuget.g.props @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> + <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> + <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> + <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageRoot> + <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageFolders> + <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.4.0</NuGetToolVersion> + </PropertyGroup> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> + <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)/xunit.runner.console/2.4.1-pre.build.4059/build/xunit.runner.console.props" Condition="Exists('$(NuGetPackageRoot)/xunit.runner.console/2.4.1-pre.build.4059/build/xunit.runner.console.props')" /> + <Import Project="$(NuGetPackageRoot)/microsoft.diagnostics.tracing.traceevent/2.0.43/build/Microsoft.Diagnostics.Tracing.TraceEvent.props" Condition="Exists('$(NuGetPackageRoot)/microsoft.diagnostics.tracing.traceevent/2.0.43/build/Microsoft.Diagnostics.Tracing.TraceEvent.props')" /> + <Import Project="$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.props" Condition="Exists('$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.props')" /> + </ImportGroup> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Pkgxunit_runner_console Condition=" '$(Pkgxunit_runner_console)' == '' ">/home/z/Dev/coreclr-sec/.packages/xunit.runner.console/2.4.1-pre.build.4059</Pkgxunit_runner_console> + <Pkgxunit_analyzers Condition=" '$(Pkgxunit_analyzers)' == '' ">/home/z/Dev/coreclr-sec/.packages/xunit.analyzers/0.10.0</Pkgxunit_analyzers> + <PkgNewtonsoft_Json Condition=" '$(PkgNewtonsoft_Json)' == '' ">/home/z/Dev/coreclr-sec/.packages/newtonsoft.json/7.0.1</PkgNewtonsoft_Json> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+serialize/obj-linux-x64/benchmark+serialize.csproj.nuget.g.targets b/tests/src/JIT/config/benchmark+serialize/obj-linux-x64/benchmark+serialize.csproj.nuget.g.targets new file mode 100644 index 0000000000..96b54d803c --- /dev/null +++ b/tests/src/JIT/config/benchmark+serialize/obj-linux-x64/benchmark+serialize.csproj.nuget.g.targets @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> + <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.targets" Condition="Exists('$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.targets')" /> + </ImportGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+serialize/obj-linux-x64/project.assets.json b/tests/src/JIT/config/benchmark+serialize/obj-linux-x64/project.assets.json new file mode 100644 index 0000000000..5e31bfcb7b --- /dev/null +++ b/tests/src/JIT/config/benchmark+serialize/obj-linux-x64/project.assets.json @@ -0,0 +1,8640 @@ +{ + "version": 3, + "targets": { + ".NETStandard,Version=v1.4": { + "CommandLineParser/2.1.1-beta": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-24027", + "System.Console": "4.0.0-rc2-24027", + "System.Diagnostics.Debug": "4.0.11-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.IO": "4.1.0-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Linq.Expressions": "4.0.11-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Reflection.Extensions": "4.0.1-rc2-24027", + "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime": "4.1.0-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027" + }, + "compile": { + "lib/netstandard1.5/CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard1.5/CommandLine.dll": {} + } + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + } + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "type": "package", + "build": { + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.2.0-beta-24913-02": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/7.0.1": { + "type": "package", + "compile": { + "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.AppContext.dll": {} + } + }, + "System.Buffers/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Collections.Concurrent/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Console/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tools/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Dynamic.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Linq": "4.4.0-beta-24913-02", + "System.Linq.Expressions": "4.4.0-beta-24913-02", + "System.ObjectModel": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Linq.Expressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Collections.Concurrent": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Linq": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Emit.Lightweight": "4.4.0-beta-24913-02", + "System.Reflection.Extensions": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Serialization.Primitives": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Text.RegularExpressions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02", + "System.Xml.XDocument": "4.4.0-beta-24913-02", + "System.Xml.XmlDocument": "4.4.0-beta-24913-02", + "System.Xml.XmlSerializer": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Reflection/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Emit/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/portable45-net45+win8+wpa81/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.4.0-preview2-25302-03": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp80+wpa81/_._": {} + } + }, + "System.Runtime.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime.Handles/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} + }, + "runtime": { + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} + } + }, + "System.Runtime.Serialization.Json/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.IO": "4.4.0-beta-24913-02", + "System.Private.DataContractSerialization": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Runtime.Serialization.Json.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Json.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.IO": "4.4.0-beta-24913-02", + "System.Private.DataContractSerialization": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Serialization.Primitives": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Text.Encoding/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.RegularExpressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading.Tasks.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.ValueTuple/4.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "System.Xml.ReaderWriter/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Text.RegularExpressions": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.Tasks.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tools": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Linq": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Extensions": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Text.RegularExpressions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02", + "System.Xml.XmlDocument": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "[2.4.1-pre.build.4059]", + "xunit.core": "[2.4.1-pre.build.4059]" + } + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + } + }, + "xunit.analyzers/0.10.0": { + "type": "package" + }, + "xunit.assert/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.1/xunit.assert.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.assert.dll": {} + } + }, + "xunit.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.1-pre.build.4059]", + "xunit.extensibility.execution": "[2.4.1-pre.build.4059]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "[2.4.1-pre.build.4059]" + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + } + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "CommandLineParser": "2.1.1-beta", + "Microsoft.3rdpartytools.MarkdownLog": "0.10.0-alpha-experimental", + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.ValueTuple": "4.3.1", + "System.Xml.XmlSerializer": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015", + "xunit.performance.execution": "1.0.0-beta-build0015", + "xunit.performance.metrics": "1.0.0-beta-build0015", + "xunit.runner.utility": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + } + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + } + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit": "2.2.0-beta2-build3300", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + } + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Formatters": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + } + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "type": "package", + "build": { + "build/xunit.runner.console.props": {} + } + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll": {} + } + } + }, + ".NETStandard,Version=v1.4/linux-x64": { + "CommandLineParser/2.1.1-beta": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-24027", + "System.Console": "4.0.0-rc2-24027", + "System.Diagnostics.Debug": "4.0.11-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.IO": "4.1.0-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Linq.Expressions": "4.0.11-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Reflection.Extensions": "4.0.1-rc2-24027", + "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime": "4.1.0-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027" + }, + "compile": { + "lib/netstandard1.5/CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard1.5/CommandLine.dll": {} + } + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + } + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "type": "package", + "build": { + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.2.0-beta-24913-02": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.unix.Microsoft.Win32.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/7.0.1": { + "type": "package", + "compile": { + "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll": {} + } + }, + "runtime.any.System.Collections/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tools/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.Tools.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "runtime.any.System.Globalization/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.dll": {} + } + }, + "runtime.any.System.Globalization.Calendars/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "runtime.any.System.IO/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.IO.dll": {} + } + }, + "runtime.any.System.Reflection/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.dll": {} + } + }, + "runtime.any.System.Reflection.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Primitives.dll": {} + } + }, + "runtime.any.System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Resources.ResourceManager.dll": {} + } + }, + "runtime.any.System.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.dll": {} + } + }, + "runtime.any.System.Runtime.Handles/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "runtime.any.System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.InteropServices.dll": {} + } + }, + "runtime.any.System.Text.Encoding/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "runtime.any.System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "runtime.any.System.Threading.Tasks/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "runtime.any.System.Threading.Timer/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Timer.dll": {} + } + }, + "runtime.linux-x64.runtime.native.System/4.4.0-beta-24913-02": { + "type": "package", + "native": { + "runtimes/linux-x64/native/System.Native.a": {}, + "runtimes/linux-x64/native/System.Native.so": {} + } + }, + "runtime.linux-x64.runtime.native.System.IO.Compression/4.4.0-beta-24913-02": { + "type": "package", + "native": { + "runtimes/linux-x64/native/System.IO.Compression.Native.so": {} + } + }, + "runtime.linux-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.4.0-beta-24913-02": { + "type": "package", + "native": { + "runtimes/linux-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {} + } + }, + "runtime.native.System/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "runtime.linux-x64.runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.linux-x64.runtime.native.System.IO.Compression": "4.4.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "runtime.linux-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.4.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.unix.Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.unix.System.Console/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Console.dll": {} + } + }, + "runtime.unix.System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.unix.System.IO.FileSystem/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Buffers": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "runtime.unix.System.Net.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "runtime.unix.System.Net.Sockets/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.Net.NameResolution": "4.4.0-beta-24913-02", + "System.Net.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.ThreadPool": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "runtime.unix.System.Private.Uri/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.0/System.Private.Uri.dll": {} + } + }, + "runtime.unix.System.Runtime.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.AppContext.dll": {} + } + }, + "System.Buffers/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Buffers.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Collections": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Collections.Concurrent/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Console/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "runtime.unix.System.Console": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.unix.System.Diagnostics.Debug": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tools/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Diagnostics.Tools": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Diagnostics.Tracing": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Dynamic.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Linq": "4.4.0-beta-24913-02", + "System.Linq.Expressions": "4.4.0-beta-24913-02", + "System.ObjectModel": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Globalization": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization.Calendars": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.any.System.IO": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {} + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.unix.System.IO.FileSystem": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Linq.Expressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Net.NameResolution/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Net.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Security.Principal.Windows": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {} + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.unix.System.Net.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.unix.System.Net.Sockets": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Collections.Concurrent": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Linq": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Emit.Lightweight": "4.4.0-beta-24913-02", + "System.Reflection.Extensions": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Serialization.Primitives": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Text.RegularExpressions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02", + "System.Xml.XDocument": "4.4.0-beta-24913-02", + "System.Xml.XmlDocument": "4.4.0-beta-24913-02", + "System.Xml.XmlSerializer": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Private.Uri/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "runtime.unix.System.Private.Uri": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + } + }, + "System.Reflection/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Reflection": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Emit/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Reflection.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/portable45-net45+win8+wpa81/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.4.0-preview2-25302-03": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Resources.ResourceManager": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "runtime.any.System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp80+wpa81/_._": {} + } + }, + "System.Runtime.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.unix.System.Runtime.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime.Handles/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Runtime.Handles": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "runtime.any.System.Runtime.InteropServices": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} + }, + "runtime": { + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} + } + }, + "System.Runtime.Serialization.Json/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.IO": "4.4.0-beta-24913-02", + "System.Private.DataContractSerialization": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Runtime.Serialization.Json.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Json.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.IO": "4.4.0-beta-24913-02", + "System.Private.DataContractSerialization": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Serialization.Primitives": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Security.Claims/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Security.Principal": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.Win32.Primitives": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Security.Claims": "4.4.0-beta-24913-02", + "System.Security.Principal": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll": {} + } + }, + "System.Text.Encoding/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Text.Encoding": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "runtime.any.System.Text.Encoding.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.RegularExpressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading.Tasks.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.ThreadPool/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Threading.Timer": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.ValueTuple/4.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "System.Xml.ReaderWriter/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Text.RegularExpressions": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.Tasks.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tools": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Linq": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Extensions": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Text.RegularExpressions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02", + "System.Xml.XmlDocument": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "[2.4.1-pre.build.4059]", + "xunit.core": "[2.4.1-pre.build.4059]" + } + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + } + }, + "xunit.analyzers/0.10.0": { + "type": "package" + }, + "xunit.assert/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.1/xunit.assert.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.assert.dll": {} + } + }, + "xunit.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.1-pre.build.4059]", + "xunit.extensibility.execution": "[2.4.1-pre.build.4059]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "[2.4.1-pre.build.4059]" + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + } + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "CommandLineParser": "2.1.1-beta", + "Microsoft.3rdpartytools.MarkdownLog": "0.10.0-alpha-experimental", + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.ValueTuple": "4.3.1", + "System.Xml.XmlSerializer": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015", + "xunit.performance.execution": "1.0.0-beta-build0015", + "xunit.performance.metrics": "1.0.0-beta-build0015", + "xunit.runner.utility": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + } + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + } + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit": "2.2.0-beta2-build3300", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + } + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Formatters": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + } + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "type": "package", + "build": { + "build/xunit.runner.console.props": {} + } + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll": {} + } + } + } + }, + "libraries": { + "CommandLineParser/2.1.1-beta": { + "sha512": "TmWNdtqLmtqLbwr0c9l1nEjjk39GB7wevl+1rxN907kjmdUUu5s470bWJFPEckfjYTnZ216xziW5fMXP35KVXg==", + "type": "package", + "path": "commandlineparser/2.1.1-beta", + "files": [ + ".nupkg.metadata", + "commandlineparser.2.1.1-beta.nupkg.sha512", + "commandlineparser.nuspec", + "lib/net40/CommandLine.XML", + "lib/net40/CommandLine.dll", + "lib/net45/CommandLine.XML", + "lib/net45/CommandLine.dll", + "lib/netstandard1.5/CommandLine.dll", + "lib/netstandard1.5/CommandLine.xml", + "readme.md" + ] + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "sha512": "BlzmPbwd0w2OGgXHFRWYu0tsJj6f6rAglvZ5q5hi71TGl6DDCZjP7WmMvcEFZi5MGGWkZ3VoPXQ4hJMMuGJF6A==", + "type": "package", + "path": "microsoft.3rdpartytools.markdownlog/0.10.0-alpha-experimental", + "files": [ + ".nupkg.metadata", + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll", + "microsoft.3rdpartytools.markdownlog.0.10.0-alpha-experimental.nupkg.sha512", + "microsoft.3rdpartytools.markdownlog.nuspec" + ] + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "sha512": "76ol4cZYvYiaiP5Vbows1ts2WDGpi/x2QxaoAToNCoGD+s2v7znzxPygPprXNYW4HmWgN8z3FsItIZb45X8OgQ==", + "type": "package", + "path": "microsoft.diagnostics.tracing.traceevent/2.0.43", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props", + "lib/native/amd64/KernelTraceControl.dll", + "lib/native/amd64/msdia140.dll", + "lib/native/x86/KernelTraceControl.Win61.dll", + "lib/native/x86/KernelTraceControl.dll", + "lib/native/x86/msdia140.dll", + "lib/net45/Dia2Lib.dll", + "lib/net45/Microsoft.Diagnostics.FastSerialization.dll", + "lib/net45/Microsoft.Diagnostics.FastSerialization.xml", + "lib/net45/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/net45/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/net45/OSExtensions.dll", + "lib/net45/TraceReloggerLib.dll", + "lib/netstandard1.6/Dia2Lib.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.xml", + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/netstandard1.6/OSExtensions.dll", + "lib/netstandard1.6/TraceReloggerLib.dll", + "lib/netstandard2.0/Dia2Lib.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.FastSerialization.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.FastSerialization.xml", + "lib/netstandard2.0/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/netstandard2.0/OSExtensions.dll", + "lib/netstandard2.0/TraceReloggerLib.dll", + "microsoft.diagnostics.tracing.traceevent.2.0.43.nupkg.sha512", + "microsoft.diagnostics.tracing.traceevent.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "sha512": "Clr2Jue6oyBlnsVf9g5qjoi06+QDYVq+U32buU9W+mRYeIFg4LXeJei1q6P/1niiKX8WIVo7KbBnqW80jVcOvw==", + "type": "package", + "path": "microsoft.netcore.platforms/3.1.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.3.1.0-preview3.19551.4.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.2.0-beta-24913-02": { + "sha512": "Z76BzrF4Nz0qVN676Tlmk3GdRxvlFDQZF6FoBRcfIkpEd07H4JLkuqryqTlbQ30X3XXUzAtsImuI2yW9eYb55g==", + "type": "package", + "path": "microsoft.netcore.targets/1.2.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.2.0-beta-24913-02.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/7.0.1": { + "sha512": "q3V4KLetMLnt1gpAVWgtXnHjKs0UG/RalBc29u2ZKxd5t5Ze4JBL5WiiYIklJyK/5CRiIiNwigVQUo0FgbsuWA==", + "type": "package", + "path": "newtonsoft.json/7.0.1", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.xml", + "newtonsoft.json.7.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "tools/install.ps1" + ] + }, + "runtime.any.System.Collections/4.4.0-beta-24913-02": { + "sha512": "F2g9ysPsUdvdzg7PusjRSfO9lCYa8hAR2TxoT+WaJ3RqCjZUmrwzFRk6mkBVhb/jqoku1wh+DjkiVws4T/iI3A==", + "type": "package", + "path": "runtime.any.system.collections/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.dll", + "lib/netstandard1.3/System.Collections.dll", + "lib/netstandard1.7/System.Collections.dll", + "lib/uap10.1/System.Collections.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.collections.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.collections.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Collections.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Diagnostics.Tools/4.4.0-beta-24913-02": { + "sha512": "q9ex5GZda4qQWulQXw0mXxUpzYsIXA+fJsduZ4+76rFfkCTCAYnFqLg3pq1++oRe5utNE55kAWCXnPEfBjhgEw==", + "type": "package", + "path": "runtime.any.system.diagnostics.tools/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/netstandard1.3/System.Diagnostics.Tools.dll", + "lib/netstandard1.7/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tools.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.diagnostics.tools.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "sha512": "Eb5yKhR992tpieQ3k2U0Mmu7SzGodlBz7pPY4vVxrmLgO+t6bwye0Bw6+tcqO05gN3kDH47C/CKyh+ta41ULdw==", + "type": "package", + "path": "runtime.any.system.diagnostics.tracing/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "lib/netstandard1.5/System.Diagnostics.Tracing.dll", + "lib/netstandard1.7/System.Diagnostics.Tracing.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tracing.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.diagnostics.tracing.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Globalization/4.4.0-beta-24913-02": { + "sha512": "szVxxBBn8e+UDwJ+lg9C+XPSjvifllUzLuGrwhM9xPKdQUjJMrxd23yG49n0XM3q+pSIrOoHwLgWf3QDmt4PKw==", + "type": "package", + "path": "runtime.any.system.globalization/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Globalization.dll", + "lib/netstandard1.3/System.Globalization.dll", + "lib/netstandard1.7/System.Globalization.dll", + "lib/uap10.1/System.Globalization.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.globalization.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/aot/lib/uap101/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Globalization.Calendars/4.4.0-beta-24913-02": { + "sha512": "f+dLksC+5rTLnXj5ILLvAmrhvfuklzN3ba9g5O8hmbZd8zvSELF2FSw+GXbWsgqXEtjvgs4LvvH0UHkYm4nigA==", + "type": "package", + "path": "runtime.any.system.globalization.calendars/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net/_._", + "lib/netcore50/System.Globalization.Calendars.dll", + "lib/netstandard1.3/System.Globalization.Calendars.dll", + "lib/netstandard1.7/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.calendars.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.globalization.calendars.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.IO/4.4.0-beta-24913-02": { + "sha512": "jr+a+OUh/h6BIO/N+SXMDVbUln6dJIEPw/Ffaqj6aq+HmjMK1sr/aP6jw6sWRUU5hi91ppd3VMQ0xyk7Z3qBbA==", + "type": "package", + "path": "runtime.any.system.io/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.IO.dll", + "lib/netstandard1.5/System.IO.dll", + "lib/netstandard1.7/System.IO.dll", + "lib/uap10.1/System.IO.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.io.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.io.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Reflection/4.4.0-beta-24913-02": { + "sha512": "3kbe1bVviwUdBK5fN5O0646ZvpSMwMNl0uB68nf1aH9LA9EQo/xDwAbRmqbhY1wbN4ydH8PhsI2H9YNrnmRIRQ==", + "type": "package", + "path": "runtime.any.system.reflection/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.dll", + "lib/netstandard1.5/System.Reflection.dll", + "lib/netstandard1.7/System.Reflection.dll", + "lib/uap10.1/System.Reflection.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.reflection.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Reflection.Primitives/4.4.0-beta-24913-02": { + "sha512": "dEDCNyC3/P1Cl3+z5Gqhe6NZ20slv2biVjq1p8VInY9ETQTzK3QYBESPXkBlLgqG4xX+AXHIoEzWChXmj1KCYg==", + "type": "package", + "path": "runtime.any.system.reflection.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/netstandard1.3/System.Reflection.Primitives.dll", + "lib/netstandard1.7/System.Reflection.Primitives.dll", + "lib/portable45-net45+win8+wp8+wpa81/_._", + "lib/portable45-net45+win8+wpa81/_._", + "lib/uap10.1/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.reflection.primitives.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Reflection.Primitives.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "sha512": "oPqDrDykaRm+drr+dDXAveefrhawetYPTOETO84M2XeZsdgVR1YATecZun7PbbgUnSgvTR6UviiTnffEYIaIUg==", + "type": "package", + "path": "runtime.any.system.resources.resourcemanager/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/netstandard1.3/System.Resources.ResourceManager.dll", + "lib/netstandard1.7/System.Resources.ResourceManager.dll", + "lib/uap10.1/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.resources.resourcemanager.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.resources.resourcemanager.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Runtime/4.4.0-beta-24913-02": { + "sha512": "WszqTsye25+HP+UHSbqW5zW4khkQGA4fE9T/ZbPwzjA8t7+H7kc6RZEEaw3NmNBHVPCPQ2/rPs+DuVr2ely9dQ==", + "type": "package", + "path": "runtime.any.system.runtime/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.dll", + "lib/netcoreapp1.2/System.Runtime.dll", + "lib/netstandard1.5/System.Runtime.dll", + "lib/netstandard1.7/System.Runtime.dll", + "lib/uap10.1/System.Runtime.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.runtime.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Runtime.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Runtime.Handles/4.4.0-beta-24913-02": { + "sha512": "QVZWjaAvR/fAnWQ84CIfOL1bP3sROghLXJV2TVOrCSy3nGbKe8R0hJMMSiYRZ1cJSPFkXCR4ov9Giq2UWhap2w==", + "type": "package", + "path": "runtime.any.system.runtime.handles/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netstandard1.3/System.Runtime.Handles.dll", + "lib/netstandard1.7/System.Runtime.Handles.dll", + "lib/uap10.1/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.handles.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.runtime.handles.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "sha512": "fQhiPiPdc2MvT1Ly8qNhXXRhtOn80nxI7zN/Rzqa+kUBETdJzivUhs2KfaMA6CeArM0HlCZr9nkb5jPe3QSy0A==", + "type": "package", + "path": "runtime.any.system.runtime.interopservices/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "lib/netstandard1.5/System.Runtime.InteropServices.dll", + "lib/netstandard1.6/System.Runtime.InteropServices.dll", + "lib/netstandard1.7/System.Runtime.InteropServices.dll", + "lib/uap10.1/System.Runtime.InteropServices.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.interopservices.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.runtime.interopservices.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Runtime.InteropServices.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Text.Encoding/4.4.0-beta-24913-02": { + "sha512": "Xeqwi4XTKzoU787kjWuFmad+InOs+3GFQt7jYgTvZescP/O1QPOpXo2OBdohyM+G7krDarJufdl4S7fNvhWacQ==", + "type": "package", + "path": "runtime.any.system.text.encoding/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/netstandard1.3/System.Text.Encoding.dll", + "lib/netstandard1.7/System.Text.Encoding.dll", + "lib/uap10.1/System.Text.Encoding.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.text.encoding.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "sha512": "x32Af805w4cweMs7FNZCXHe/k2twQFE9l0/siz7P86e4PhHz6wc4BJ6I8AR3kxqBwtgSF7QPnLhN1yNxem8/MA==", + "type": "package", + "path": "runtime.any.system.text.encoding.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll", + "lib/netstandard1.7/System.Text.Encoding.Extensions.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.text.encoding.extensions.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Threading.Tasks/4.4.0-beta-24913-02": { + "sha512": "WfTJsPBqnWM3ba8Ua9xehHQbJW+RwcAu9LCWXuMhQAmsxssz15uycggqRdsS6hb2dRkZS9Jz3dtu3ns6Q7M2qw==", + "type": "package", + "path": "runtime.any.system.threading.tasks/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/netstandard1.3/System.Threading.Tasks.dll", + "lib/netstandard1.7/System.Threading.Tasks.dll", + "lib/uap10.1/System.Threading.Tasks.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.tasks.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.threading.tasks.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Threading.Tasks.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Threading.Timer/4.4.0-beta-24913-02": { + "sha512": "+IDpQUBdCovPqrD9tV2OlluOc+CNsDSs8GJ5WVa/ZBXCeVGX2qwZKO8a3nwnc81SpxO1zGlMo/Y2m6K0pDPnKQ==", + "type": "package", + "path": "runtime.any.system.threading.timer/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/netstandard1.3/System.Threading.Timer.dll", + "lib/netstandard1.7/System.Threading.Timer.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.timer.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.threading.timer.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.linux-x64.runtime.native.System/4.4.0-beta-24913-02": { + "sha512": "sssCMcBrty+rIkiBdaVoFN1c0llOnwW5ZFvj7PYomc0SZtsJXIZWruFeYCRmkT+qrcdjIJRyEPs0gQFwVkherg==", + "type": "package", + "path": "runtime.linux-x64.runtime.native.system/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.linux-x64.runtime.native.system.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.linux-x64.runtime.native.system.nuspec", + "runtimes/linux-x64/native/System.Native.a", + "runtimes/linux-x64/native/System.Native.so", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.linux-x64.runtime.native.System.IO.Compression/4.4.0-beta-24913-02": { + "sha512": "c56L47xwZfrqMp47oZ0Z6Nx+prd+maS1V8kRQEQnZfkis9T/aF+wM9+bXEDgS2/gl38BxZHD40jTOWeoHVVHSA==", + "type": "package", + "path": "runtime.linux-x64.runtime.native.system.io.compression/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.linux-x64.runtime.native.system.io.compression.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.linux-x64.runtime.native.system.io.compression.nuspec", + "runtimes/linux-x64/native/System.IO.Compression.Native.so", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.linux-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.4.0-beta-24913-02": { + "sha512": "HoSRBeHtdskdLmj0pVuNu49Ud0Zk489TDO65lH7KDygXic9yxEhug2peeZmpiZYjieZpFrisSq+7kk9YDNDLxQ==", + "type": "package", + "path": "runtime.linux-x64.runtime.native.system.security.cryptography.openssl/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.linux-x64.runtime.native.system.security.cryptography.openssl.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.linux-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/linux-x64/native/System.Security.Cryptography.Native.OpenSsl.so", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System/4.4.0-beta-24913-02": { + "sha512": "DtEYKhWPpIDQlWxyIWBiUK7Q3H2kPxVNLuOccIJY17tS1I4b0ya5FVc6WVj47Zg3SUvFuJhZzM7EqZsl5c4RWA==", + "type": "package", + "path": "runtime.native.system/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.native.system.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.4.0-beta-24913-02": { + "sha512": "J9TS90larMk0sgXUZQceCtbLzuYm3wHud/qBTLGYC5Yd6ntuZCifJxQd7QhM5jykR2u06aPCkKiv9bodz16tyw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.unix.Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "sha512": "ErIf7An6edPAgcSJcLZAYH8KEr2Aqi2H47K860JKyXLnwK0G047ksS8VtVg0v9z2cs3p+YTLTDD6dFLbg3RLpg==", + "type": "package", + "path": "runtime.unix.microsoft.win32.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.microsoft.win32.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.microsoft.win32.primitives.nuspec", + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Primitives.dll", + "runtimes/unix/lib/netstandard1.7/Microsoft.Win32.Primitives.dll", + "runtimes/unix/lib/uap10.1/Microsoft.Win32.Primitives.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Console/4.4.0-beta-24913-02": { + "sha512": "bVyMROOfEqc/7fRDnearZ6Jpeq/Psc+EFe/srfRQeVuFLMXT6cxaCvUk+4gHJisdSZQCleIdlIy4VoS/Tdvs7w==", + "type": "package", + "path": "runtime.unix.system.console/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.console.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.console.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Console.dll", + "runtimes/unix/lib/netstandard1.7/System.Console.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "sha512": "M95VkuwoXStqkCny6RJK1pECnFevEqkrvlDjyouEUXJneIB4qSH0LHH9rfrmhQosE+Z5m3KQIh1wCGneZ932Zg==", + "type": "package", + "path": "runtime.unix.system.diagnostics.debug/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.diagnostics.debug.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.diagnostics.debug.nuspec", + "runtimes/unix-corert/lib/netcoreapp1.2/System.Diagnostics.Debug.dll", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.Debug.dll", + "runtimes/unix/lib/netstandard1.7/System.Diagnostics.Debug.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.IO.FileSystem/4.4.0-beta-24913-02": { + "sha512": "4E0WH3D3D7uAHImAj3zQBRuYHSfUrCvdyv75+TuvTLw6RKPtoBR8Jq0mVAXIqshvrUfHCyBzv+cn5oY2BrBSRA==", + "type": "package", + "path": "runtime.unix.system.io.filesystem/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.io.filesystem.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.io.filesystem.nuspec", + "runtimes/unix/lib/netstandard1.3/System.IO.FileSystem.dll", + "runtimes/unix/lib/netstandard1.7/System.IO.FileSystem.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Net.Primitives/4.4.0-beta-24913-02": { + "sha512": "DBOmYuPH4khZftILHrquXZTda5PiTaBsWejwwtYtZsvUPZtF0nYmsjbCrOycbGWzS4gFZoU6vqD4dMbku4/ZEg==", + "type": "package", + "path": "runtime.unix.system.net.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.net.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.net.primitives.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Net.Primitives.dll", + "runtimes/unix/lib/netstandard1.7/System.Net.Primitives.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Net.Sockets/4.4.0-beta-24913-02": { + "sha512": "vl7Lz6dnOa+xi/WUUsZ1G3TFhroPkPrWKWVSUGg9E6mGcK5m2VqCbqcWwneYehgallbBMLOEmL7nsq+1XXCGWQ==", + "type": "package", + "path": "runtime.unix.system.net.sockets/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.net.sockets.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.net.sockets.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Net.Sockets.dll", + "runtimes/unix/lib/netstandard1.7/System.Net.Sockets.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Private.Uri/4.4.0-beta-24913-02": { + "sha512": "CM/S/SEyzccTOXKa+HAnUpAKlqspZRgfYbEQWKxTpm3iljXcj5aWuoaZFAav3Rts34FS6A7m+zCUgJeRKFGzPQ==", + "type": "package", + "path": "runtime.unix.system.private.uri/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.private.uri.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.private.uri.nuspec", + "runtimes/unix-corert/lib/netcoreapp1.2/System.Private.Uri.dll", + "runtimes/unix/lib/netstandard1.0/System.Private.Uri.dll", + "runtimes/unix/lib/uap10.1/System.Private.Uri.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Runtime.Extensions/4.4.0-beta-24913-02": { + "sha512": "SbmnGceBoHRqOLVdRdgdOd9UKizKVmwlBpbww67Hju5rUbMdOv4AdkoHrFm+Ee7kO0xHumYHlTuenmXmuFRW4Q==", + "type": "package", + "path": "runtime.unix.system.runtime.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.runtime.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.runtime.extensions.nuspec", + "runtimes/unix-corert/lib/netcoreapp1.2/System.Runtime.Extensions.dll", + "runtimes/unix/lib/netstandard1.5/System.Runtime.Extensions.dll", + "runtimes/unix/lib/netstandard1.7/System.Runtime.Extensions.dll", + "runtimes/unix/lib/uap10.1/System.Runtime.Extensions.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.3.0": { + "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "type": "package", + "path": "system.buffers/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/.xml", + "lib/netstandard1.1/System.Buffers.dll", + "system.buffers.4.3.0.nupkg.sha512", + "system.buffers.nuspec" + ] + }, + "System.Buffers/4.4.0-beta-24913-02": { + "sha512": "759YUTLvoV/0Y8oIp+yiPruR79AB+g5q+DqhDfNBjX1UxG7mAiemru5zEKMHEUBmj19nuDpwO1VXeFw/LfqYjw==", + "type": "package", + "path": "system.buffers/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netcoreapp1.1/.xml", + "lib/netcoreapp1.1/System.Buffers.dll", + "lib/netstandard1.1/.xml", + "lib/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.dll", + "system.buffers.4.4.0-beta-24913-02.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.4.0-beta-24913-02": { + "sha512": "Y9+bO37c8uVvXqkNGm90t2geVYeaEkWjMTgOkq6CkOOAtF5BpqKTvwnelXWP2pmL5fSqAMvPhsN/UXkTTxgMRA==", + "type": "package", + "path": "system.collections/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Collections.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Collections.dll", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netcoreapp1.1/System.Collections.dll", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/netstandard1.7/System.Collections.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Collections.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.4.0-beta-24913-02.nupkg.sha512", + "system.collections.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections.Concurrent/4.4.0-beta-24913-02": { + "sha512": "eky+QV4xCtubhbJk62uICQ4iygDnhoU7ojHRZbog5bqhjGWHtzvLdLu9nBu7YPKh7GDzk2ZHfL9uNECo8kKcdA==", + "type": "package", + "path": "system.collections.concurrent/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/netstandard1.7/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netcoreapp1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.4.0-beta-24913-02.nupkg.sha512", + "system.collections.concurrent.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Console/4.4.0-beta-24913-02": { + "sha512": "AiRso5v4Rbn6JgfRevPTZ0q+bpkfuAGQtkk4Aiuu+np3c4mEdHrW/ippOuSmIQJmvyHVEg9TQxpjrjcZUhLvkw==", + "type": "package", + "path": "system.console/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/net463/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/net463/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/netstandard1.7/System.Console.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.4.0-beta-24913-02.nupkg.sha512", + "system.console.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "sha512": "1JrMoPGopozBemABZVZvaXpPjXPqboGsxyZE+r8iuaJuU6nCVpxIvZf9LTkDZdXvdzA6UN8gNyo5JVkTpDRrtQ==", + "type": "package", + "path": "system.diagnostics.debug/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Diagnostics.Debug.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.7/System.Diagnostics.Debug.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net463/System.Diagnostics.Debug.dll", + "system.diagnostics.debug.4.4.0-beta-24913-02.nupkg.sha512", + "system.diagnostics.debug.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec" + ] + }, + "System.Diagnostics.Tools/4.4.0-beta-24913-02": { + "sha512": "3+1/MJ0ME+wAF6sjVw4c9YapbKctjZjGiiUInRIzAcCApIgJZQH9gskNntwbsVdw2C5E/CkPkczob5ytiFz+oQ==", + "type": "package", + "path": "system.diagnostics.tools/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Diagnostics.Tools.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.7/System.Diagnostics.Tools.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.4.0-beta-24913-02.nupkg.sha512", + "system.diagnostics.tools.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "sha512": "dupkxZ5nLUDX8e9OqQ1XqPJM54UZo3XGRiFeqdF/a59R90KbVSmmhqT4RPwa92fi4Unr401DQXMDBEVLLmJo9w==", + "type": "package", + "path": "system.diagnostics.tracing/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.7/System.Diagnostics.Tracing.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.4.0-beta-24913-02.nupkg.sha512", + "system.diagnostics.tracing.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Dynamic.Runtime/4.4.0-beta-24913-02": { + "sha512": "mbTmaXJ97fHhsbgzaZILTYCp1roBgOXoHhaN1hTmR/To9EEKNGERX61hVP099pAACklnPyrVrEFBZdEEAkXzDg==", + "type": "package", + "path": "system.dynamic.runtime/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Dynamic.Runtime.dll", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.dll", + "lib/netstandard1.7/System.Dynamic.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.7/System.Dynamic.Runtime.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.4.0-beta-24913-02.nupkg.sha512", + "system.dynamic.runtime.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Globalization/4.4.0-beta-24913-02": { + "sha512": "KxBYuqGY1P0LBAn1uXLyiYf3qXiNlhDCfCtLBemYA7mouGqqs+YPgYo2WuI5pqGU6VjAWiQvAT6PeNhofDvTHw==", + "type": "package", + "path": "system.globalization/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Globalization.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Globalization.dll", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/netstandard1.7/System.Globalization.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Globalization.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.4.0-beta-24913-02.nupkg.sha512", + "system.globalization.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.IO/4.4.0-beta-24913-02": { + "sha512": "BEqLHSTjhsWFdxz0q5OYlFc2Ic7NcWbKrn13IulLnRpF9yJClv3W2CxSHPq2IB48qKvODoYO9wEKax74+JK8eg==", + "type": "package", + "path": "system.io/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netcoreapp1.1/System.IO.dll", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/netstandard1.7/System.IO.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.IO.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.4.0-beta-24913-02.nupkg.sha512", + "system.io.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.4.0-beta-24913-02": { + "sha512": "DvhfpfWgOwoxyjPNYKhMV0xZuqGdznnaC7aIMzBc2oh+u19jZrloGl11P2DnFKJLfsth5DPLvTMxXmvKLeuykw==", + "type": "package", + "path": "system.io.filesystem/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/net463/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/net463/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/netstandard1.7/System.IO.FileSystem.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.4.0-beta-24913-02.nupkg.sha512", + "system.io.filesystem.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.FileSystem.Primitives/4.4.0-beta-24913-02": { + "sha512": "wRiqs3kiUczfE2pBubg2o3u06yQeUeqZruZG8ckw5/QJHRMCcnSaf//dyhJs+Qnq7uOYVoI2p8rEnYjm6w9omw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/net463/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.7/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/net463/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.7/System.IO.FileSystem.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "system.io.filesystem.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq/4.4.0-beta-24913-02": { + "sha512": "bjnCiY6U3f9k7fH/R3IQohZniRlLB3MdQ59n0nH8oa26YCFZO+OgjdVbSj67RgVpxupYLzXCZ80li32HcL4qdQ==", + "type": "package", + "path": "system.linq/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netcoreapp1.1/System.Linq.dll", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.4.0-beta-24913-02.nupkg.sha512", + "system.linq.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq.Expressions/4.4.0-beta-24913-02": { + "sha512": "FGRSqzfppwrXJSO+91Bi3BEOV1xejk/VHOL3bZRJYCshZ67t8s5OeOk8ywh96Xi12+RFIsXkIzJYBBYC3xV/ow==", + "type": "package", + "path": "system.linq.expressions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/netstandard1.7/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.7/System.Linq.Expressions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.4.0-beta-24913-02.nupkg.sha512", + "system.linq.expressions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.NameResolution/4.4.0-beta-24913-02": { + "sha512": "xTSaAEadOMDmmGLv60VMP1GtqMq++l23ld96Rg3X/Sphde1FFLB9nUetcoWx7VwfC5sJ1m70YprLKXDS4PNG8A==", + "type": "package", + "path": "system.net.nameresolution/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.NameResolution.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.xml", + "ref/netstandard1.3/de/System.Net.NameResolution.xml", + "ref/netstandard1.3/es/System.Net.NameResolution.xml", + "ref/netstandard1.3/fr/System.Net.NameResolution.xml", + "ref/netstandard1.3/it/System.Net.NameResolution.xml", + "ref/netstandard1.3/ja/System.Net.NameResolution.xml", + "ref/netstandard1.3/ko/System.Net.NameResolution.xml", + "ref/netstandard1.3/ru/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", + "runtimes/win/lib/net46/System.Net.NameResolution.dll", + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll", + "system.net.nameresolution.4.4.0-beta-24913-02.nupkg.sha512", + "system.net.nameresolution.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.ObjectModel/4.4.0-beta-24913-02": { + "sha512": "7fImkhTugA/dsFg/prA4UH7CoP4xmf7Brd5/v+dUA62mND9foQQnTOq0xSCOVZ6b25sy0kKqxLUtekZvRIMlkQ==", + "type": "package", + "path": "system.objectmodel/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.ObjectModel.dll", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/netstandard1.7/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netcoreapp1.1/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.7/System.ObjectModel.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.4.0-beta-24913-02.nupkg.sha512", + "system.objectmodel.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Private.DataContractSerialization/4.4.0-beta-24913-02": { + "sha512": "+iOLB+QulHm//iXRtQqjlHuv4Mb7CN2F780YNPt5UI07zgCBTpOMGPJpkIFkbdDez6KUhu8q0MEdPFxhnhK6SQ==", + "type": "package", + "path": "system.private.datacontractserialization/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.3/System.Private.DataContractSerialization.dll", + "lib/netstandard1.7/System.Private.DataContractSerialization.dll", + "ref/netstandard/_._", + "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll", + "system.private.datacontractserialization.4.4.0-beta-24913-02.nupkg.sha512", + "system.private.datacontractserialization.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Private.Uri/4.4.0-beta-24913-02": { + "sha512": "P5WV/+fFObWRGhcbiUIx+23/hz4k/x6xFoePjam1t6xvKw+E1E4KkM8O2sRkZQ0h8i7ATr04oCi5jNnzg2+idg==", + "type": "package", + "path": "system.private.uri/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "system.private.uri.4.4.0-beta-24913-02.nupkg.sha512", + "system.private.uri.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection/4.4.0-beta-24913-02": { + "sha512": "BYjVZSHD4JDmhn5LueNSF16qU8WA6V2YAakX+q+U9lAlj/B+gV+l9vO2RkJjzexvDcZLluFzIUdpWDGtOj95wA==", + "type": "package", + "path": "system.reflection/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/netstandard1.7/System.Reflection.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Reflection.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit/4.4.0-beta-24913-02": { + "sha512": "8t9c/WJwVW4lM4furhRKIGDH4YIMnqWeo/tXktHJpczi6SiBpWfi+RymwRVbbxrPy7+b+jgtspwM0AHizm8hRg==", + "type": "package", + "path": "system.reflection.emit/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.emit.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit.ILGeneration/4.4.0-beta-24913-02": { + "sha512": "StjC21V2SztX1QUCMlwE1QfXXJhmmNJVu07DDLqj/fn6F23tIHB+EDcroeA7QKRQbfarUxL4MzZAJqEhcfPqYA==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit.Lightweight/4.4.0-beta-24913-02": { + "sha512": "qK7GukxWqkcU5tG7YLLLZdAvaDsAFk6Kp6sXd4Cxpm8jcoHNzCPV48dZMx64TczZHtbedHwwkYJe5JKTHnGcKA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Extensions/4.4.0-beta-24913-02": { + "sha512": "6f9M3xv5HkaZEbZLsjRSEHekr1bbEFUbtpr/8NHGJ3cwjdUmfirIwT3i69VxPy0xx9nj8OLbfGitQcPOUsK/sA==", + "type": "package", + "path": "system.reflection.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Reflection.Extensions.dll", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/netstandard1.3/System.Reflection.Extensions.dll", + "lib/netstandard1.7/System.Reflection.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.1/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.7/System.Reflection.Extensions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Reflection.Extensions.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll", + "runtimes/aot/lib/uap10.1/System.Reflection.Extensions.dll", + "system.reflection.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Primitives/4.4.0-beta-24913-02": { + "sha512": "qR0QeMteCI5xqH473N019aiA3kSrUYIsxHb5yD8EMeEY9ZQpDe7eETxaxm9mDtZsk5ykm3fboDda8cAsHqM5+w==", + "type": "package", + "path": "system.reflection.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Reflection.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/portable45-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.7/System.Reflection.Primitives.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/portable45-net45+win8+wpa81/_._", + "ref/uap10.1/System.Reflection.Primitives.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.TypeExtensions/4.4.0-preview2-25302-03": { + "sha512": "GSFwBW4h06Y2B14gBSQn2mXOClBEuKnycjdzvhsrLY+mQPieCtsP4AiOC95PV/8zwMM3rXLfjguERttLuKkibA==", + "type": "package", + "path": "system.reflection.typeextensions/4.4.0-preview2-25302-03", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net461/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netcoreapp1.0/System.Reflection.TypeExtensions.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/netstandard2.0/System.Reflection.TypeExtensions.dll", + "lib/uap10.1/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net461/System.Reflection.TypeExtensions.dll", + "ref/net461/System.Reflection.TypeExtensions.xml", + "ref/net461/de/System.Reflection.TypeExtensions.xml", + "ref/net461/es/System.Reflection.TypeExtensions.xml", + "ref/net461/fr/System.Reflection.TypeExtensions.xml", + "ref/net461/it/System.Reflection.TypeExtensions.xml", + "ref/net461/ja/System.Reflection.TypeExtensions.xml", + "ref/net461/ko/System.Reflection.TypeExtensions.xml", + "ref/net461/ru/System.Reflection.TypeExtensions.xml", + "ref/net461/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/net461/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/System.Reflection.TypeExtensions.dll", + "ref/netstandard2.0/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/uap10.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "runtimes/aot/lib/uap10.1/_._", + "runtimes/win/lib/net461/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.4.0-preview2-25302-03.nupkg.sha512", + "system.reflection.typeextensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "sha512": "zbswj86i6yoQyMybsHm16OPp5/uoWqTJX0X7QuguoBpOdBc7XJ9H68dvuRb4VUKh/WtbvUiftn2PnLCDC5gZxA==", + "type": "package", + "path": "system.resources.resourcemanager/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Resources.ResourceManager.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.7/System.Resources.ResourceManager.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.4.0-beta-24913-02.nupkg.sha512", + "system.resources.resourcemanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime/4.4.0-beta-24913-02": { + "sha512": "OjwRltLPQUMt7uJ4vQklRo1fFK9WsL10GMyFKB+SdZknqXzxpM3zThIjMFtiQJtf8hmXTQU8H0DkMWinTHroJw==", + "type": "package", + "path": "system.runtime/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netcoreapp1.1/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/netstandard1.7/System.Runtime.dll", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/uap10.1/System.Runtime.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Extensions/4.4.0-beta-24913-02": { + "sha512": "v1XLBAT4zvJdo4pP6wXvasll7+0v/B0X+TNueBfqsprfP0xGPOm8TOUB2ln/djZrnz/AWSOLlevjIFs6PhJD+Q==", + "type": "package", + "path": "system.runtime.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netcoreapp1.1/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.7/System.Runtime.Extensions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Runtime.Extensions.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/uap10.1/System.Runtime.Extensions.dll", + "runtimes/win/lib/net461/System.Runtime.Extensions.dll", + "system.runtime.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Handles/4.4.0-beta-24913-02": { + "sha512": "5Z5jTG+Lx8ttF1ukhKhF5cMyNbfZqsYhp8HFg6sHZojo0vPfeXYce0eRHiWkPxcZ1yHVz6V/l7iBPJIDR4nC8Q==", + "type": "package", + "path": "system.runtime.handles/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/net463/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/net463/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/netstandard1.7/System.Runtime.Handles.dll", + "ref/uap10.1/System.Runtime.Handles.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.handles.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "sha512": "T7Tv7MQGriQdoTjyztjsICDhQrsoIE4DH5yu+UlUnH5Ze+h3SRTJSdnOsXVnsA5bjq7jDTm7aFJM47KYBYi1vA==", + "type": "package", + "path": "system.runtime.interopservices/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.7/System.Runtime.InteropServices.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/uap10.1/System.Runtime.InteropServices.dll", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.interopservices.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.3.0": { + "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==", + "type": "package", + "path": "system.runtime.serialization.formatters/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Runtime.Serialization.Formatters.dll", + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Runtime.Serialization.Formatters.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.serialization.formatters.4.3.0.nupkg.sha512", + "system.runtime.serialization.formatters.nuspec" + ] + }, + "System.Runtime.Serialization.Json/4.4.0-beta-24913-02": { + "sha512": "r4QnoENLFESvBkuLRWFIJZQYgFgqCPt6m9MjNJfQ363jmN1KknJT5SUc/tExbVm2nLjJLANFKDdQvKfgwI7d4w==", + "type": "package", + "path": "system.runtime.serialization.json/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Serialization.Json.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Json.dll", + "lib/netstandard1.7/System.Runtime.Serialization.Json.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Serialization.Json.dll", + "ref/netcore50/System.Runtime.Serialization.Json.xml", + "ref/netcore50/de/System.Runtime.Serialization.Json.xml", + "ref/netcore50/es/System.Runtime.Serialization.Json.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Json.xml", + "ref/netcore50/it/System.Runtime.Serialization.Json.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Json.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Json.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Json.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Json.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Json.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.7/System.Runtime.Serialization.Json.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.serialization.json.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.serialization.json.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Serialization.Primitives/4.4.0-beta-24913-02": { + "sha512": "/7og6DM3J/b87Zxuggagf7SEe62EzP3Fmu3yZX1fodgEAzph4Z/fzGgk6d6daNYe81ca9R9lcnZKKAzBjsfAFA==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Primitives.dll", + "lib/net463/System.Runtime.Serialization.Primitives.dll", + "lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "lib/netstandard1.7/System.Runtime.Serialization.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.1/System.Runtime.Serialization.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Primitives.dll", + "ref/net463/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.7/System.Runtime.Serialization.Primitives.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Runtime.Serialization.Primitives.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "runtimes/aot/lib/uap10.1/System.Runtime.Serialization.Primitives.dll", + "system.runtime.serialization.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Serialization.Xml/4.4.0-beta-24913-02": { + "sha512": "pVGJfrv+toC1Bc7mLPGFoU4uZjolnhIELAVkdcMvpjJIva0Y3eB8r2/HnfPYtA40rAu3E0aC3X3MSFG1T3ACMQ==", + "type": "package", + "path": "system.runtime.serialization.xml/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Xml.dll", + "lib/net463/System.Runtime.Serialization.Xml.dll", + "lib/netcore50/System.Runtime.Serialization.Xml.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Xml.dll", + "lib/netstandard1.7/System.Runtime.Serialization.Xml.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Xml.dll", + "ref/net463/System.Runtime.Serialization.Xml.dll", + "ref/netcore50/System.Runtime.Serialization.Xml.dll", + "ref/netcore50/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/de/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/es/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/it/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Xml.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Xml.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.7/System.Runtime.Serialization.Xml.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.serialization.xml.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.serialization.xml.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Claims/4.4.0-beta-24913-02": { + "sha512": "/PPqq7MEKJvP8kE/ud4uzqvi4gYQICRMwQV2+hxJkd2A9vKyGvDmpq2HbbMPO6U2lMTwdMUmdUm7HgEoCcy6kw==", + "type": "package", + "path": "system.security.claims/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/net463/System.Security.Claims.dll", + "lib/netstandard1.3/System.Security.Claims.dll", + "lib/netstandard1.7/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/net463/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.xml", + "ref/netstandard1.3/de/System.Security.Claims.xml", + "ref/netstandard1.3/es/System.Security.Claims.xml", + "ref/netstandard1.3/fr/System.Security.Claims.xml", + "ref/netstandard1.3/it/System.Security.Claims.xml", + "ref/netstandard1.3/ja/System.Security.Claims.xml", + "ref/netstandard1.3/ko/System.Security.Claims.xml", + "ref/netstandard1.3/ru/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hans/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hant/System.Security.Claims.xml", + "ref/netstandard1.7/System.Security.Claims.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.claims.4.4.0-beta-24913-02.nupkg.sha512", + "system.security.claims.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Principal/4.4.0-beta-24913-02": { + "sha512": "OSfvB2svUkTf3TgH2NRsZT+EOqSt57SgjQ7fahG2ahH/JFHLxfNdCnYV8l1FFjAJzHcCS6ExQvhq0wIAoa/wmA==", + "type": "package", + "path": "system.security.principal/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Security.Principal.dll", + "lib/netcore50/System.Security.Principal.dll", + "lib/netstandard1.0/System.Security.Principal.dll", + "lib/netstandard1.7/System.Security.Principal.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.1/System.Security.Principal.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/netcore50/de/System.Security.Principal.xml", + "ref/netcore50/es/System.Security.Principal.xml", + "ref/netcore50/fr/System.Security.Principal.xml", + "ref/netcore50/it/System.Security.Principal.xml", + "ref/netcore50/ja/System.Security.Principal.xml", + "ref/netcore50/ko/System.Security.Principal.xml", + "ref/netcore50/ru/System.Security.Principal.xml", + "ref/netcore50/zh-hans/System.Security.Principal.xml", + "ref/netcore50/zh-hant/System.Security.Principal.xml", + "ref/netstandard1.0/System.Security.Principal.dll", + "ref/netstandard1.0/System.Security.Principal.xml", + "ref/netstandard1.0/de/System.Security.Principal.xml", + "ref/netstandard1.0/es/System.Security.Principal.xml", + "ref/netstandard1.0/fr/System.Security.Principal.xml", + "ref/netstandard1.0/it/System.Security.Principal.xml", + "ref/netstandard1.0/ja/System.Security.Principal.xml", + "ref/netstandard1.0/ko/System.Security.Principal.xml", + "ref/netstandard1.0/ru/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hans/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hant/System.Security.Principal.xml", + "ref/netstandard1.7/System.Security.Principal.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Security.Principal.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/uap10.1/System.Security.Principal.dll", + "system.security.principal.4.4.0-beta-24913-02.nupkg.sha512", + "system.security.principal.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.4.0-beta-24913-02": { + "sha512": "ZHYzVfmY8hv2VGl8zLEI5tG3m5tZgoToMNq84ZZR3zUpFjKMaKVviIN+1r+5C+f6Xyw7T45sGMmdMya69P+bnA==", + "type": "package", + "path": "system.security.principal.windows/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net463/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net463/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard1.7/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netstandard1.7/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net463/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.7/System.Security.Principal.Windows.dll", + "system.security.principal.windows.4.4.0-beta-24913-02.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.4.0-beta-24913-02": { + "sha512": "+IM39s4C1QMr/qKpiVlLOr+FIfyXVTe7tpIx39hoTcAvZY+sXhMMS5ErJeJdaSMZgL5ZyGzcuxkfeAYDKloW6w==", + "type": "package", + "path": "system.text.encoding/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.Encoding.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.7/System.Text.Encoding.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Text.Encoding.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.4.0-beta-24913-02.nupkg.sha512", + "system.text.encoding.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "sha512": "jK3sE8t8Ngi1hSKmPI1RGXaqdtCT6dPPvfrFWDn8u45r6Zh4RJk4962v6AU5saxkssCfTiVhqDK+Drageb5mJA==", + "type": "package", + "path": "system.text.encoding.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.Encoding.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.7/System.Text.Encoding.Extensions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.text.encoding.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.RegularExpressions/4.4.0-beta-24913-02": { + "sha512": "eb/QjBezP1/UbivTA+xpNakEST/xnm1/yc563KRUINfsZ+Owz3By8ofAV2S94usp087bWls5v1sX4rZAjuTuxg==", + "type": "package", + "path": "system.text.regularexpressions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/netstandard1.7/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.7/System.Text.RegularExpressions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.4.0-beta-24913-02.nupkg.sha512", + "system.text.regularexpressions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading/4.4.0-beta-24913-02": { + "sha512": "IDvvo0zC8/kGPUnj2l79COn+vizKPxDoJ9BcLMo5R8H7CImr4t98kZyChhY1lu2PZfxo/t+4QrtXDgZflWnPkw==", + "type": "package", + "path": "system.threading/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Threading.dll", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/netstandard1.7/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Threading.dll", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/netstandard1.7/System.Threading.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks/4.4.0-beta-24913-02": { + "sha512": "tphb/t923mWZs75EwmJg6CEB5fgC2YRItN37XvPjANv9FmCxo9THV+eD8/Fdw2SxeyZ9nJtgupbk076ZAvTV1A==", + "type": "package", + "path": "system.threading.tasks/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Threading.Tasks.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.7/System.Threading.Tasks.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Threading.Tasks.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.tasks.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks.Extensions/4.4.0-beta-24913-02": { + "sha512": "NWU1a7pXP2AySgi4ZAN0qjkzXIYRoPTg6hdMEZSxAIf7mMupJTlTB0tmJZ8QarD/33ClxoSOwN6hjCSukJ9pmw==", + "type": "package", + "path": "system.threading.tasks.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "system.threading.tasks.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.ThreadPool/4.4.0-beta-24913-02": { + "sha512": "lD4kymw3NHChTiqHFH9zxVvfTY8uLBy34KdBP661x8FIeiN78DwQEKMVZOQ2zZ/ThmARWxG4E7YzH1NOkJacGQ==", + "type": "package", + "path": "system.threading.threadpool/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.ThreadPool.dll", + "lib/net463/System.Threading.ThreadPool.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.ThreadPool.dll", + "lib/netstandard1.7/System.Threading.ThreadPool.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.ThreadPool.dll", + "ref/net463/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/de/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/es/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/it/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml", + "ref/netstandard1.7/System.Threading.ThreadPool.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.threadpool.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.threadpool.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.ValueTuple/4.3.1": { + "sha512": "xzDmg26Wb2x2rFDjwziaMYQJqxhrK+b4OUC008o7CnZhUMb2p5XfwgOgAQ/WlKhqxMUSDWRUm5/lNTKdh27pJA==", + "type": "package", + "path": "system.valuetuple/4.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netstandard1.0/.xml", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/.xml", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.3.1.nupkg.sha512", + "system.valuetuple.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.4.0-beta-24913-02": { + "sha512": "xrGH2gJKLBb6cPvZPtdk9P3CXg3TpPoZOFhv8bJCxk1wYzJfPbeQbeXwAJOS/fnu9tbMatwmJO0orAgopQAS0A==", + "type": "package", + "path": "system.xml.readerwriter/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/net463/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/netstandard1.7/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/net463/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.7/System.Xml.ReaderWriter.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.4.0-beta-24913-02.nupkg.sha512", + "system.xml.readerwriter.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.XDocument/4.4.0-beta-24913-02": { + "sha512": "DV81bpi7DHWPJpZbYBYrdPJFpJFwxtP8MLuoakFOym7ctdmY6M+yNci94MAzVirbno/ESZRSZeMZ/momBdNLHQ==", + "type": "package", + "path": "system.xml.xdocument/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Xml.XDocument.dll", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/netstandard1.7/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.7/System.Xml.XDocument.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.4.0-beta-24913-02.nupkg.sha512", + "system.xml.xdocument.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.XmlDocument/4.4.0-beta-24913-02": { + "sha512": "IgZcUmPiMEq7qXkg1pNX7vKx7a70QdaNo1hvpuKInNMCXAjmvg/CYY6uZTVWMxkZV4xyEY4kt5UnBhvn4MSjyQ==", + "type": "package", + "path": "system.xml.xmldocument/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/net463/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/netstandard1.7/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/net463/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/netstandard1.7/System.Xml.XmlDocument.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.4.0-beta-24913-02.nupkg.sha512", + "system.xml.xmldocument.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.XmlSerializer/4.4.0-beta-24913-02": { + "sha512": "KC0JWSxgF0dtqeRpMxyWPDRrQdnqTVnBb0AmnmH2XcvqwMH9KIhSuk6zdt7VmZJIhhlj3rGOZ7THcLYDIX8Ttg==", + "type": "package", + "path": "system.xml.xmlserializer/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Xml.XmlSerializer.dll", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "lib/netstandard1.3/System.Xml.XmlSerializer.dll", + "lib/netstandard1.7/System.Xml.XmlSerializer.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Xml.XmlSerializer.dll", + "ref/netcore50/System.Xml.XmlSerializer.dll", + "ref/netcore50/System.Xml.XmlSerializer.xml", + "ref/netcore50/de/System.Xml.XmlSerializer.xml", + "ref/netcore50/es/System.Xml.XmlSerializer.xml", + "ref/netcore50/fr/System.Xml.XmlSerializer.xml", + "ref/netcore50/it/System.Xml.XmlSerializer.xml", + "ref/netcore50/ja/System.Xml.XmlSerializer.xml", + "ref/netcore50/ko/System.Xml.XmlSerializer.xml", + "ref/netcore50/ru/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/System.Xml.XmlSerializer.dll", + "ref/netstandard1.0/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/de/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/es/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/it/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/System.Xml.XmlSerializer.dll", + "ref/netstandard1.3/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/de/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/es/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/it/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.7/System.Xml.XmlSerializer.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "system.xml.xmlserializer.4.4.0-beta-24913-02.nupkg.sha512", + "system.xml.xmlserializer.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "xunit/2.4.1-pre.build.4059": { + "sha512": "Kt50VVI9yqbPLPICi1J2Sl2zoidhyMqbT+ywCSINDDXCJhVOXVBoE/1geWui5Sppx8Cv5U0DmYCLxveaOB0mLw==", + "type": "package", + "path": "xunit/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "xunit.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.nuspec" + ] + }, + "xunit.abstractions/2.0.3": { + "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", + "type": "package", + "path": "xunit.abstractions/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/netstandard1.0/xunit.abstractions.dll", + "lib/netstandard1.0/xunit.abstractions.xml", + "lib/netstandard2.0/xunit.abstractions.dll", + "lib/netstandard2.0/xunit.abstractions.xml", + "xunit.abstractions.2.0.3.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.analyzers/0.10.0": { + "sha512": "4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg==", + "type": "package", + "path": "xunit.analyzers/0.10.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/xunit.analyzers.dll", + "tools/install.ps1", + "tools/uninstall.ps1", + "xunit.analyzers.0.10.0.nupkg.sha512", + "xunit.analyzers.nuspec" + ] + }, + "xunit.assert/2.4.1-pre.build.4059": { + "sha512": "PrfmhpgBTilGWP4DC6Q2FV17TEfTpnCARMjYNMQvUF1IFV5DhXNU5ChC0JeL17ctp89krn4Pld4/Wiuq4ILMxw==", + "type": "package", + "path": "xunit.assert/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.1/xunit.assert.dll", + "lib/netstandard1.1/xunit.assert.xml", + "lib/netstandard2.0/xunit.assert.dll", + "lib/netstandard2.0/xunit.assert.xml", + "xunit.assert.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.core/2.4.1-pre.build.4059": { + "sha512": "nQh89ZP+wmC79euBg5p/6Jr8rugPTQo/GAx9Wry2Pgu9q4ltDv9XeQTqsQE/trvqOjyrTRtCOQT1P+vcufj0Kg==", + "type": "package", + "path": "xunit.core/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/xunit.core.props", + "build/xunit.core.targets", + "buildMultiTargeting/xunit.core.props", + "buildMultiTargeting/xunit.core.targets", + "xunit.core.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.core.nuspec" + ] + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "sha512": "MpnCaHPR67FdYgdkbzuSIxtYdGJaY6WwjotyvifGKcy94M3Rm2eCQqKQsFSN1TbcRhHRCweOo24+E+wnGxjuTw==", + "type": "package", + "path": "xunit.extensibility.core/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/xunit.core.dll", + "lib/net452/xunit.core.dll.tdnet", + "lib/net452/xunit.core.xml", + "lib/net452/xunit.runner.tdnet.dll", + "lib/net452/xunit.runner.utility.net452.dll", + "lib/netstandard1.1/xunit.core.dll", + "lib/netstandard1.1/xunit.core.xml", + "lib/netstandard2.0/xunit.core.dll", + "lib/netstandard2.0/xunit.core.xml", + "xunit.extensibility.core.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "sha512": "sLmjOlIAAs4omfY/019PQMXWkxpxd/CfVnTEMBBEN89fU/bPfeoNRBjnqJ54tHpK2xDCPUye19PNSFH4aW6B8Q==", + "type": "package", + "path": "xunit.extensibility.execution/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/xunit.execution.desktop.dll", + "lib/net452/xunit.execution.desktop.xml", + "lib/netstandard1.1/xunit.execution.dotnet.dll", + "lib/netstandard1.1/xunit.execution.dotnet.xml", + "lib/netstandard2.0/xunit.execution.dotnet.dll", + "lib/netstandard2.0/xunit.execution.dotnet.xml", + "xunit.extensibility.execution.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "sha512": "FBASqurcvUoVQ52vY2LH4XUf1/Hkz9wmcuBj5IqIhEpgK+YjhWePepguSlpSre44hhhWNe5WO3XIrZ6pGTbyng==", + "type": "package", + "path": "xunit.performance.api/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.api.dll", + "lib/net461/xunit.performance.api.xml", + "lib/netstandard1.5/xunit.performance.api.dll", + "lib/netstandard1.5/xunit.performance.api.xml", + "xunit.performance.api.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.api.nuspec" + ] + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "sha512": "1CEv1zleRb8D0mDckZjpR8VPaP+2YSeMUAnnb/a3aL0DrG9IEeTN2Uu+30IaX/OHG7iuqLX9zWja+sey76Us0w==", + "type": "package", + "path": "xunit.performance.core/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/netstandard1.3/xunit.performance.core.dll", + "lib/netstandard1.3/xunit.performance.core.xml", + "xunit.performance.core.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.core.nuspec" + ] + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "sha512": "hfNLz/+fA1CqHPQWexPoQBDMs1y1x8gdy1WgQH1nUG5Jf1KVviUddy3+MCTEbuELyqrcLpkR/p57WLUAYKwhCw==", + "type": "package", + "path": "xunit.performance.execution/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.execution.dll", + "lib/net461/xunit.performance.execution.xml", + "lib/netstandard1.5/xunit.performance.execution.dll", + "lib/netstandard1.5/xunit.performance.execution.xml", + "xunit.performance.execution.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.execution.nuspec" + ] + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "sha512": "VWtijjK9HfQvx2nmQ15hEAtBdHEmWSVk0Gc60+yEF+xMq/wZmD0jSvCykW5Jz0ponX88Z6RU39ZjRDq+vLnCgg==", + "type": "package", + "path": "xunit.performance.metrics/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.metrics.dll", + "lib/net461/xunit.performance.metrics.xml", + "lib/netstandard1.5/xunit.performance.metrics.dll", + "lib/netstandard1.5/xunit.performance.metrics.xml", + "xunit.performance.metrics.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.metrics.nuspec" + ] + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "sha512": "oWTxKNZbtkn8HBHi59zxTRP4y80SlaOqFOu+ausTLOyOPr7/aZ39U6L9F8mh69890NRbW2Qcd/UdP3YvPsseHw==", + "type": "package", + "path": "xunit.runner.console/2.4.1-pre.build.4059", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/xunit.runner.console.props", + "tools/net452/xunit.abstractions.dll", + "tools/net452/xunit.console.exe", + "tools/net452/xunit.console.exe.config", + "tools/net452/xunit.console.x86.exe", + "tools/net452/xunit.console.x86.exe.config", + "tools/net452/xunit.runner.reporters.net452.dll", + "tools/net452/xunit.runner.utility.net452.dll", + "tools/net46/xunit.abstractions.dll", + "tools/net46/xunit.console.exe", + "tools/net46/xunit.console.exe.config", + "tools/net46/xunit.console.x86.exe", + "tools/net46/xunit.console.x86.exe.config", + "tools/net46/xunit.runner.reporters.net452.dll", + "tools/net46/xunit.runner.utility.net452.dll", + "tools/net461/xunit.abstractions.dll", + "tools/net461/xunit.console.exe", + "tools/net461/xunit.console.exe.config", + "tools/net461/xunit.console.x86.exe", + "tools/net461/xunit.console.x86.exe.config", + "tools/net461/xunit.runner.reporters.net452.dll", + "tools/net461/xunit.runner.utility.net452.dll", + "tools/net462/xunit.abstractions.dll", + "tools/net462/xunit.console.exe", + "tools/net462/xunit.console.exe.config", + "tools/net462/xunit.console.x86.exe", + "tools/net462/xunit.console.x86.exe.config", + "tools/net462/xunit.runner.reporters.net452.dll", + "tools/net462/xunit.runner.utility.net452.dll", + "tools/net47/xunit.abstractions.dll", + "tools/net47/xunit.console.exe", + "tools/net47/xunit.console.exe.config", + "tools/net47/xunit.console.x86.exe", + "tools/net47/xunit.console.x86.exe.config", + "tools/net47/xunit.runner.reporters.net452.dll", + "tools/net47/xunit.runner.utility.net452.dll", + "tools/net471/xunit.abstractions.dll", + "tools/net471/xunit.console.exe", + "tools/net471/xunit.console.exe.config", + "tools/net471/xunit.console.x86.exe", + "tools/net471/xunit.console.x86.exe.config", + "tools/net471/xunit.runner.reporters.net452.dll", + "tools/net471/xunit.runner.utility.net452.dll", + "tools/net472/xunit.abstractions.dll", + "tools/net472/xunit.console.exe", + "tools/net472/xunit.console.exe.config", + "tools/net472/xunit.console.x86.exe", + "tools/net472/xunit.console.x86.exe.config", + "tools/net472/xunit.runner.reporters.net452.dll", + "tools/net472/xunit.runner.utility.net452.dll", + "tools/netcoreapp1.0/xunit.abstractions.dll", + "tools/netcoreapp1.0/xunit.console.deps.json", + "tools/netcoreapp1.0/xunit.console.dll", + "tools/netcoreapp1.0/xunit.console.dll.config", + "tools/netcoreapp1.0/xunit.console.runtimeconfig.json", + "tools/netcoreapp1.0/xunit.runner.reporters.netcoreapp10.dll", + "tools/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll", + "tools/netcoreapp1.0/xunit.runner.utility.netcoreapp10.xml", + "tools/netcoreapp2.0/xunit.abstractions.dll", + "tools/netcoreapp2.0/xunit.console.deps.json", + "tools/netcoreapp2.0/xunit.console.dll", + "tools/netcoreapp2.0/xunit.console.dll.config", + "tools/netcoreapp2.0/xunit.console.runtimeconfig.json", + "tools/netcoreapp2.0/xunit.runner.reporters.netcoreapp10.dll", + "tools/netcoreapp2.0/xunit.runner.utility.netcoreapp10.dll", + "tools/netcoreapp2.0/xunit.runner.utility.netcoreapp10.xml", + "xunit.runner.console.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.runner.console.nuspec" + ] + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "sha512": "YyTcFxooSkYo9gr8HgLhHZ7T5PHjnCLC9dGXgbLwMCNZeqO+DzY8nWehE++FasEwMAlUv87MLhLEVXoVvMQtKQ==", + "type": "package", + "path": "xunit.runner.utility/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/xunit.runner.utility.net35.dll", + "lib/net35/xunit.runner.utility.net35.xml", + "lib/net452/xunit.runner.utility.net452.dll", + "lib/net452/xunit.runner.utility.net452.xml", + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll", + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.xml", + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll", + "lib/netstandard1.1/xunit.runner.utility.netstandard11.xml", + "lib/netstandard1.5/xunit.runner.utility.netstandard15.dll", + "lib/netstandard1.5/xunit.runner.utility.netstandard15.xml", + "lib/netstandard2.0/xunit.runner.utility.netstandard20.dll", + "lib/netstandard2.0/xunit.runner.utility.netstandard20.xml", + "lib/uap10.0/xunit.runner.utility.uwp10.dll", + "lib/uap10.0/xunit.runner.utility.uwp10.pri", + "lib/uap10.0/xunit.runner.utility.uwp10.xml", + "xunit.runner.utility.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + ".NETStandard,Version=v1.4": [ + "Microsoft.Diagnostics.Tracing.TraceEvent >= 2.0.43", + "Microsoft.NETCore.Platforms >= 3.1.0-preview3.19551.4", + "Newtonsoft.Json >= 7.0.1", + "System.Console >= 4.4.0-beta-24913-02", + "System.Dynamic.Runtime >= 4.4.0-beta-24913-02", + "System.IO >= 4.4.0-beta-24913-02", + "System.IO.FileSystem >= 4.4.0-beta-24913-02", + "System.Linq >= 4.4.0-beta-24913-02", + "System.ObjectModel >= 4.4.0-beta-24913-02", + "System.Reflection >= 4.4.0-beta-24913-02", + "System.Reflection.Extensions >= 4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions >= 4.4.0-preview2-25302-03", + "System.Runtime >= 4.4.0-beta-24913-02", + "System.Runtime.Serialization.Json >= 4.4.0-beta-24913-02", + "System.Runtime.Serialization.Primitives >= 4.4.0-beta-24913-02", + "System.Runtime.Serialization.Xml >= 4.4.0-beta-24913-02", + "System.Text.RegularExpressions >= 4.4.0-beta-24913-02", + "System.Xml.XmlDocument >= 4.4.0-beta-24913-02", + "System.Xml.XmlSerializer >= 4.4.0-beta-24913-02", + "xunit >= 2.4.1-pre.build.4059", + "xunit.performance.api >= 1.0.0-beta-build0015", + "xunit.performance.core >= 1.0.0-beta-build0015", + "xunit.performance.execution >= 1.0.0-beta-build0015", + "xunit.performance.metrics >= 1.0.0-beta-build0015", + "xunit.runner.console >= 2.4.1-pre.build.4059", + "xunit.runner.utility >= 2.4.1-pre.build.4059" + ] + }, + "packageFolders": { + "/home/z/Dev/coreclr-sec/.packages": {} + }, + "project": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+serialize/benchmark+serialize.csproj", + "projectName": "benchmark+serialize", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+serialize/benchmark+serialize.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+serialize/obj-linux-x64", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netstandard1.4" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netstandard1.4": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netstandard1.4": { + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": { + "target": "Package", + "version": "[2.0.43, )" + }, + "Microsoft.NETCore.Platforms": { + "target": "Package", + "version": "[3.1.0-preview3.19551.4, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[7.0.1, )" + }, + "System.Console": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Dynamic.Runtime": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.IO": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.IO.FileSystem": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.ObjectModel": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.TypeExtensions": { + "target": "Package", + "version": "[4.4.0-preview2-25302-03, )" + }, + "System.Runtime": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Serialization.Json": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Serialization.Primitives": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Serialization.Xml": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Text.RegularExpressions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Xml.XmlDocument": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Xml.XmlSerializer": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.performance.api": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.core": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.execution": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.metrics": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.runner.console": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.runner.utility": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x64": { + "#import": [] + } + } + }, + "logs": [ + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + } + ] +}
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+serialize/obj-linux-x86/benchmark+serialize.csproj.nuget.cache b/tests/src/JIT/config/benchmark+serialize/obj-linux-x86/benchmark+serialize.csproj.nuget.cache new file mode 100644 index 0000000000..568ff7a419 --- /dev/null +++ b/tests/src/JIT/config/benchmark+serialize/obj-linux-x86/benchmark+serialize.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "44v8kUTMtrYa2htkmAtiEqdykOqY/e+TTLGHfPX7+mm0u5ZwgIoZiRFekhwgYNW2++Jcrz8d8GAtx2cc5yQKhg==", + "success": true +}
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+serialize/obj-linux-x86/benchmark+serialize.csproj.nuget.dgspec.json b/tests/src/JIT/config/benchmark+serialize/obj-linux-x86/benchmark+serialize.csproj.nuget.dgspec.json new file mode 100644 index 0000000000..3231b4075d --- /dev/null +++ b/tests/src/JIT/config/benchmark+serialize/obj-linux-x86/benchmark+serialize.csproj.nuget.dgspec.json @@ -0,0 +1,157 @@ +{ + "format": 1, + "restore": { + "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+serialize/benchmark+serialize.csproj": {} + }, + "projects": { + "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+serialize/benchmark+serialize.csproj": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+serialize/benchmark+serialize.csproj", + "projectName": "benchmark+serialize", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+serialize/benchmark+serialize.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+serialize/obj-linux-x86", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netstandard1.4" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netstandard1.4": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netstandard1.4": { + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": { + "target": "Package", + "version": "[2.0.43, )" + }, + "Microsoft.NETCore.Platforms": { + "target": "Package", + "version": "[3.1.0-preview3.19551.4, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[7.0.1, )" + }, + "System.Console": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Dynamic.Runtime": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.IO": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.IO.FileSystem": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.ObjectModel": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.TypeExtensions": { + "target": "Package", + "version": "[4.4.0-preview2-25302-03, )" + }, + "System.Runtime": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Serialization.Json": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Serialization.Primitives": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Serialization.Xml": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Text.RegularExpressions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Xml.XmlDocument": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Xml.XmlSerializer": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.performance.api": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.core": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.execution": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.metrics": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.runner.console": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.runner.utility": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x86": { + "#import": [] + } + } + } + } +}
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+serialize/obj-linux-x86/benchmark+serialize.csproj.nuget.g.props b/tests/src/JIT/config/benchmark+serialize/obj-linux-x86/benchmark+serialize.csproj.nuget.g.props new file mode 100644 index 0000000000..35c58cfef6 --- /dev/null +++ b/tests/src/JIT/config/benchmark+serialize/obj-linux-x86/benchmark+serialize.csproj.nuget.g.props @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> + <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> + <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> + <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageRoot> + <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageFolders> + <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.4.0</NuGetToolVersion> + </PropertyGroup> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> + <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)/xunit.runner.console/2.4.1-pre.build.4059/build/xunit.runner.console.props" Condition="Exists('$(NuGetPackageRoot)/xunit.runner.console/2.4.1-pre.build.4059/build/xunit.runner.console.props')" /> + <Import Project="$(NuGetPackageRoot)/microsoft.diagnostics.tracing.traceevent/2.0.43/build/Microsoft.Diagnostics.Tracing.TraceEvent.props" Condition="Exists('$(NuGetPackageRoot)/microsoft.diagnostics.tracing.traceevent/2.0.43/build/Microsoft.Diagnostics.Tracing.TraceEvent.props')" /> + <Import Project="$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.props" Condition="Exists('$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.props')" /> + </ImportGroup> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Pkgxunit_runner_console Condition=" '$(Pkgxunit_runner_console)' == '' ">/home/z/Dev/coreclr-sec/.packages/xunit.runner.console/2.4.1-pre.build.4059</Pkgxunit_runner_console> + <Pkgxunit_analyzers Condition=" '$(Pkgxunit_analyzers)' == '' ">/home/z/Dev/coreclr-sec/.packages/xunit.analyzers/0.10.0</Pkgxunit_analyzers> + <PkgNewtonsoft_Json Condition=" '$(PkgNewtonsoft_Json)' == '' ">/home/z/Dev/coreclr-sec/.packages/newtonsoft.json/7.0.1</PkgNewtonsoft_Json> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+serialize/obj-linux-x86/benchmark+serialize.csproj.nuget.g.targets b/tests/src/JIT/config/benchmark+serialize/obj-linux-x86/benchmark+serialize.csproj.nuget.g.targets new file mode 100644 index 0000000000..96b54d803c --- /dev/null +++ b/tests/src/JIT/config/benchmark+serialize/obj-linux-x86/benchmark+serialize.csproj.nuget.g.targets @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> + <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.targets" Condition="Exists('$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.targets')" /> + </ImportGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark+serialize/obj-linux-x86/project.assets.json b/tests/src/JIT/config/benchmark+serialize/obj-linux-x86/project.assets.json new file mode 100644 index 0000000000..c4a53f285b --- /dev/null +++ b/tests/src/JIT/config/benchmark+serialize/obj-linux-x86/project.assets.json @@ -0,0 +1,8572 @@ +{ + "version": 3, + "targets": { + ".NETStandard,Version=v1.4": { + "CommandLineParser/2.1.1-beta": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-24027", + "System.Console": "4.0.0-rc2-24027", + "System.Diagnostics.Debug": "4.0.11-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.IO": "4.1.0-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Linq.Expressions": "4.0.11-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Reflection.Extensions": "4.0.1-rc2-24027", + "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime": "4.1.0-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027" + }, + "compile": { + "lib/netstandard1.5/CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard1.5/CommandLine.dll": {} + } + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + } + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "type": "package", + "build": { + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.2.0-beta-24913-02": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/7.0.1": { + "type": "package", + "compile": { + "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.AppContext.dll": {} + } + }, + "System.Buffers/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Collections.Concurrent/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Console/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tools/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Dynamic.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Linq": "4.4.0-beta-24913-02", + "System.Linq.Expressions": "4.4.0-beta-24913-02", + "System.ObjectModel": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Linq.Expressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Collections.Concurrent": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Linq": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Emit.Lightweight": "4.4.0-beta-24913-02", + "System.Reflection.Extensions": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Serialization.Primitives": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Text.RegularExpressions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02", + "System.Xml.XDocument": "4.4.0-beta-24913-02", + "System.Xml.XmlDocument": "4.4.0-beta-24913-02", + "System.Xml.XmlSerializer": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Reflection/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Emit/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/portable45-net45+win8+wpa81/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.4.0-preview2-25302-03": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp80+wpa81/_._": {} + } + }, + "System.Runtime.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime.Handles/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} + }, + "runtime": { + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} + } + }, + "System.Runtime.Serialization.Json/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.IO": "4.4.0-beta-24913-02", + "System.Private.DataContractSerialization": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Runtime.Serialization.Json.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Json.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.IO": "4.4.0-beta-24913-02", + "System.Private.DataContractSerialization": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Serialization.Primitives": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Text.Encoding/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.RegularExpressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading.Tasks.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.ValueTuple/4.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "System.Xml.ReaderWriter/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Text.RegularExpressions": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.Tasks.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tools": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Linq": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Extensions": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Text.RegularExpressions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02", + "System.Xml.XmlDocument": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "[2.4.1-pre.build.4059]", + "xunit.core": "[2.4.1-pre.build.4059]" + } + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + } + }, + "xunit.analyzers/0.10.0": { + "type": "package" + }, + "xunit.assert/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.1/xunit.assert.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.assert.dll": {} + } + }, + "xunit.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.1-pre.build.4059]", + "xunit.extensibility.execution": "[2.4.1-pre.build.4059]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "[2.4.1-pre.build.4059]" + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + } + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "CommandLineParser": "2.1.1-beta", + "Microsoft.3rdpartytools.MarkdownLog": "0.10.0-alpha-experimental", + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.ValueTuple": "4.3.1", + "System.Xml.XmlSerializer": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015", + "xunit.performance.execution": "1.0.0-beta-build0015", + "xunit.performance.metrics": "1.0.0-beta-build0015", + "xunit.runner.utility": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + } + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + } + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit": "2.2.0-beta2-build3300", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + } + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Formatters": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + } + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "type": "package", + "build": { + "build/xunit.runner.console.props": {} + } + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll": {} + } + } + }, + ".NETStandard,Version=v1.4/linux-x86": { + "CommandLineParser/2.1.1-beta": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-24027", + "System.Console": "4.0.0-rc2-24027", + "System.Diagnostics.Debug": "4.0.11-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.IO": "4.1.0-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Linq.Expressions": "4.0.11-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Reflection.Extensions": "4.0.1-rc2-24027", + "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime": "4.1.0-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027" + }, + "compile": { + "lib/netstandard1.5/CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard1.5/CommandLine.dll": {} + } + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + } + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "type": "package", + "build": { + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.2.0-beta-24913-02": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.unix.Microsoft.Win32.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/7.0.1": { + "type": "package", + "compile": { + "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll": {} + } + }, + "runtime.any.System.Collections/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tools/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.Tools.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "runtime.any.System.Globalization/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.dll": {} + } + }, + "runtime.any.System.Globalization.Calendars/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "runtime.any.System.IO/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.IO.dll": {} + } + }, + "runtime.any.System.Reflection/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.dll": {} + } + }, + "runtime.any.System.Reflection.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Primitives.dll": {} + } + }, + "runtime.any.System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Resources.ResourceManager.dll": {} + } + }, + "runtime.any.System.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.dll": {} + } + }, + "runtime.any.System.Runtime.Handles/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "runtime.any.System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.InteropServices.dll": {} + } + }, + "runtime.any.System.Text.Encoding/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "runtime.any.System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "runtime.any.System.Threading.Tasks/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "runtime.any.System.Threading.Timer/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Timer.dll": {} + } + }, + "runtime.native.System/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.unix.Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.unix.System.Console/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Console.dll": {} + } + }, + "runtime.unix.System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.unix.System.IO.FileSystem/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Buffers": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "runtime.unix.System.Net.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "runtime.unix.System.Net.Sockets/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.Net.NameResolution": "4.4.0-beta-24913-02", + "System.Net.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.ThreadPool": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "runtime.unix.System.Private.Uri/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.0/System.Private.Uri.dll": {} + } + }, + "runtime.unix.System.Runtime.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.AppContext.dll": {} + } + }, + "System.Buffers/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Buffers.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Collections": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Collections.Concurrent/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Console/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "runtime.unix.System.Console": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.unix.System.Diagnostics.Debug": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tools/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Diagnostics.Tools": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Diagnostics.Tracing": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Dynamic.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Linq": "4.4.0-beta-24913-02", + "System.Linq.Expressions": "4.4.0-beta-24913-02", + "System.ObjectModel": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Globalization": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization.Calendars": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.any.System.IO": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {} + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.unix.System.IO.FileSystem": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Linq.Expressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Net.NameResolution/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Net.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Security.Principal.Windows": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {} + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.unix.System.Net.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.unix.System.Net.Sockets": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Collections.Concurrent": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Linq": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Emit.Lightweight": "4.4.0-beta-24913-02", + "System.Reflection.Extensions": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Serialization.Primitives": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Text.RegularExpressions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02", + "System.Xml.XDocument": "4.4.0-beta-24913-02", + "System.Xml.XmlDocument": "4.4.0-beta-24913-02", + "System.Xml.XmlSerializer": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Private.Uri/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "runtime.unix.System.Private.Uri": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + } + }, + "System.Reflection/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Reflection": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Emit/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Reflection.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/portable45-net45+win8+wpa81/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.4.0-preview2-25302-03": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Resources.ResourceManager": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "runtime.any.System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp80+wpa81/_._": {} + } + }, + "System.Runtime.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.unix.System.Runtime.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime.Handles/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Runtime.Handles": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "runtime.any.System.Runtime.InteropServices": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} + }, + "runtime": { + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} + } + }, + "System.Runtime.Serialization.Json/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.IO": "4.4.0-beta-24913-02", + "System.Private.DataContractSerialization": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Runtime.Serialization.Json.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Json.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.IO": "4.4.0-beta-24913-02", + "System.Private.DataContractSerialization": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Serialization.Primitives": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Security.Claims/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Security.Principal": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.Win32.Primitives": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Security.Claims": "4.4.0-beta-24913-02", + "System.Security.Principal": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll": {} + } + }, + "System.Text.Encoding/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Text.Encoding": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "runtime.any.System.Text.Encoding.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.RegularExpressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading.Tasks.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.ThreadPool/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Threading.Timer": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.ValueTuple/4.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "System.Xml.ReaderWriter/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Text.RegularExpressions": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.Tasks.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tools": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Linq": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Extensions": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Text.RegularExpressions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02", + "System.Xml.XmlDocument": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "[2.4.1-pre.build.4059]", + "xunit.core": "[2.4.1-pre.build.4059]" + } + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + } + }, + "xunit.analyzers/0.10.0": { + "type": "package" + }, + "xunit.assert/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.1/xunit.assert.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.assert.dll": {} + } + }, + "xunit.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.1-pre.build.4059]", + "xunit.extensibility.execution": "[2.4.1-pre.build.4059]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "[2.4.1-pre.build.4059]" + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + } + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "CommandLineParser": "2.1.1-beta", + "Microsoft.3rdpartytools.MarkdownLog": "0.10.0-alpha-experimental", + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.ValueTuple": "4.3.1", + "System.Xml.XmlSerializer": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015", + "xunit.performance.execution": "1.0.0-beta-build0015", + "xunit.performance.metrics": "1.0.0-beta-build0015", + "xunit.runner.utility": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + } + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + } + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit": "2.2.0-beta2-build3300", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + } + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Formatters": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + } + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "type": "package", + "build": { + "build/xunit.runner.console.props": {} + } + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll": {} + } + } + } + }, + "libraries": { + "CommandLineParser/2.1.1-beta": { + "sha512": "TmWNdtqLmtqLbwr0c9l1nEjjk39GB7wevl+1rxN907kjmdUUu5s470bWJFPEckfjYTnZ216xziW5fMXP35KVXg==", + "type": "package", + "path": "commandlineparser/2.1.1-beta", + "files": [ + ".nupkg.metadata", + "commandlineparser.2.1.1-beta.nupkg.sha512", + "commandlineparser.nuspec", + "lib/net40/CommandLine.XML", + "lib/net40/CommandLine.dll", + "lib/net45/CommandLine.XML", + "lib/net45/CommandLine.dll", + "lib/netstandard1.5/CommandLine.dll", + "lib/netstandard1.5/CommandLine.xml", + "readme.md" + ] + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "sha512": "BlzmPbwd0w2OGgXHFRWYu0tsJj6f6rAglvZ5q5hi71TGl6DDCZjP7WmMvcEFZi5MGGWkZ3VoPXQ4hJMMuGJF6A==", + "type": "package", + "path": "microsoft.3rdpartytools.markdownlog/0.10.0-alpha-experimental", + "files": [ + ".nupkg.metadata", + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll", + "microsoft.3rdpartytools.markdownlog.0.10.0-alpha-experimental.nupkg.sha512", + "microsoft.3rdpartytools.markdownlog.nuspec" + ] + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "sha512": "76ol4cZYvYiaiP5Vbows1ts2WDGpi/x2QxaoAToNCoGD+s2v7znzxPygPprXNYW4HmWgN8z3FsItIZb45X8OgQ==", + "type": "package", + "path": "microsoft.diagnostics.tracing.traceevent/2.0.43", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props", + "lib/native/amd64/KernelTraceControl.dll", + "lib/native/amd64/msdia140.dll", + "lib/native/x86/KernelTraceControl.Win61.dll", + "lib/native/x86/KernelTraceControl.dll", + "lib/native/x86/msdia140.dll", + "lib/net45/Dia2Lib.dll", + "lib/net45/Microsoft.Diagnostics.FastSerialization.dll", + "lib/net45/Microsoft.Diagnostics.FastSerialization.xml", + "lib/net45/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/net45/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/net45/OSExtensions.dll", + "lib/net45/TraceReloggerLib.dll", + "lib/netstandard1.6/Dia2Lib.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.xml", + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/netstandard1.6/OSExtensions.dll", + "lib/netstandard1.6/TraceReloggerLib.dll", + "lib/netstandard2.0/Dia2Lib.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.FastSerialization.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.FastSerialization.xml", + "lib/netstandard2.0/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/netstandard2.0/OSExtensions.dll", + "lib/netstandard2.0/TraceReloggerLib.dll", + "microsoft.diagnostics.tracing.traceevent.2.0.43.nupkg.sha512", + "microsoft.diagnostics.tracing.traceevent.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "sha512": "Clr2Jue6oyBlnsVf9g5qjoi06+QDYVq+U32buU9W+mRYeIFg4LXeJei1q6P/1niiKX8WIVo7KbBnqW80jVcOvw==", + "type": "package", + "path": "microsoft.netcore.platforms/3.1.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.3.1.0-preview3.19551.4.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.2.0-beta-24913-02": { + "sha512": "Z76BzrF4Nz0qVN676Tlmk3GdRxvlFDQZF6FoBRcfIkpEd07H4JLkuqryqTlbQ30X3XXUzAtsImuI2yW9eYb55g==", + "type": "package", + "path": "microsoft.netcore.targets/1.2.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.2.0-beta-24913-02.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/7.0.1": { + "sha512": "q3V4KLetMLnt1gpAVWgtXnHjKs0UG/RalBc29u2ZKxd5t5Ze4JBL5WiiYIklJyK/5CRiIiNwigVQUo0FgbsuWA==", + "type": "package", + "path": "newtonsoft.json/7.0.1", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.xml", + "newtonsoft.json.7.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "tools/install.ps1" + ] + }, + "runtime.any.System.Collections/4.4.0-beta-24913-02": { + "sha512": "F2g9ysPsUdvdzg7PusjRSfO9lCYa8hAR2TxoT+WaJ3RqCjZUmrwzFRk6mkBVhb/jqoku1wh+DjkiVws4T/iI3A==", + "type": "package", + "path": "runtime.any.system.collections/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.dll", + "lib/netstandard1.3/System.Collections.dll", + "lib/netstandard1.7/System.Collections.dll", + "lib/uap10.1/System.Collections.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.collections.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.collections.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Collections.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Diagnostics.Tools/4.4.0-beta-24913-02": { + "sha512": "q9ex5GZda4qQWulQXw0mXxUpzYsIXA+fJsduZ4+76rFfkCTCAYnFqLg3pq1++oRe5utNE55kAWCXnPEfBjhgEw==", + "type": "package", + "path": "runtime.any.system.diagnostics.tools/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/netstandard1.3/System.Diagnostics.Tools.dll", + "lib/netstandard1.7/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tools.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.diagnostics.tools.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "sha512": "Eb5yKhR992tpieQ3k2U0Mmu7SzGodlBz7pPY4vVxrmLgO+t6bwye0Bw6+tcqO05gN3kDH47C/CKyh+ta41ULdw==", + "type": "package", + "path": "runtime.any.system.diagnostics.tracing/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "lib/netstandard1.5/System.Diagnostics.Tracing.dll", + "lib/netstandard1.7/System.Diagnostics.Tracing.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tracing.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.diagnostics.tracing.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Globalization/4.4.0-beta-24913-02": { + "sha512": "szVxxBBn8e+UDwJ+lg9C+XPSjvifllUzLuGrwhM9xPKdQUjJMrxd23yG49n0XM3q+pSIrOoHwLgWf3QDmt4PKw==", + "type": "package", + "path": "runtime.any.system.globalization/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Globalization.dll", + "lib/netstandard1.3/System.Globalization.dll", + "lib/netstandard1.7/System.Globalization.dll", + "lib/uap10.1/System.Globalization.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.globalization.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/aot/lib/uap101/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Globalization.Calendars/4.4.0-beta-24913-02": { + "sha512": "f+dLksC+5rTLnXj5ILLvAmrhvfuklzN3ba9g5O8hmbZd8zvSELF2FSw+GXbWsgqXEtjvgs4LvvH0UHkYm4nigA==", + "type": "package", + "path": "runtime.any.system.globalization.calendars/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net/_._", + "lib/netcore50/System.Globalization.Calendars.dll", + "lib/netstandard1.3/System.Globalization.Calendars.dll", + "lib/netstandard1.7/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.calendars.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.globalization.calendars.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.IO/4.4.0-beta-24913-02": { + "sha512": "jr+a+OUh/h6BIO/N+SXMDVbUln6dJIEPw/Ffaqj6aq+HmjMK1sr/aP6jw6sWRUU5hi91ppd3VMQ0xyk7Z3qBbA==", + "type": "package", + "path": "runtime.any.system.io/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.IO.dll", + "lib/netstandard1.5/System.IO.dll", + "lib/netstandard1.7/System.IO.dll", + "lib/uap10.1/System.IO.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.io.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.io.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Reflection/4.4.0-beta-24913-02": { + "sha512": "3kbe1bVviwUdBK5fN5O0646ZvpSMwMNl0uB68nf1aH9LA9EQo/xDwAbRmqbhY1wbN4ydH8PhsI2H9YNrnmRIRQ==", + "type": "package", + "path": "runtime.any.system.reflection/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.dll", + "lib/netstandard1.5/System.Reflection.dll", + "lib/netstandard1.7/System.Reflection.dll", + "lib/uap10.1/System.Reflection.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.reflection.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Reflection.Primitives/4.4.0-beta-24913-02": { + "sha512": "dEDCNyC3/P1Cl3+z5Gqhe6NZ20slv2biVjq1p8VInY9ETQTzK3QYBESPXkBlLgqG4xX+AXHIoEzWChXmj1KCYg==", + "type": "package", + "path": "runtime.any.system.reflection.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/netstandard1.3/System.Reflection.Primitives.dll", + "lib/netstandard1.7/System.Reflection.Primitives.dll", + "lib/portable45-net45+win8+wp8+wpa81/_._", + "lib/portable45-net45+win8+wpa81/_._", + "lib/uap10.1/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.reflection.primitives.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Reflection.Primitives.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "sha512": "oPqDrDykaRm+drr+dDXAveefrhawetYPTOETO84M2XeZsdgVR1YATecZun7PbbgUnSgvTR6UviiTnffEYIaIUg==", + "type": "package", + "path": "runtime.any.system.resources.resourcemanager/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/netstandard1.3/System.Resources.ResourceManager.dll", + "lib/netstandard1.7/System.Resources.ResourceManager.dll", + "lib/uap10.1/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.resources.resourcemanager.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.resources.resourcemanager.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Runtime/4.4.0-beta-24913-02": { + "sha512": "WszqTsye25+HP+UHSbqW5zW4khkQGA4fE9T/ZbPwzjA8t7+H7kc6RZEEaw3NmNBHVPCPQ2/rPs+DuVr2ely9dQ==", + "type": "package", + "path": "runtime.any.system.runtime/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.dll", + "lib/netcoreapp1.2/System.Runtime.dll", + "lib/netstandard1.5/System.Runtime.dll", + "lib/netstandard1.7/System.Runtime.dll", + "lib/uap10.1/System.Runtime.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.runtime.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Runtime.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Runtime.Handles/4.4.0-beta-24913-02": { + "sha512": "QVZWjaAvR/fAnWQ84CIfOL1bP3sROghLXJV2TVOrCSy3nGbKe8R0hJMMSiYRZ1cJSPFkXCR4ov9Giq2UWhap2w==", + "type": "package", + "path": "runtime.any.system.runtime.handles/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netstandard1.3/System.Runtime.Handles.dll", + "lib/netstandard1.7/System.Runtime.Handles.dll", + "lib/uap10.1/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.handles.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.runtime.handles.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "sha512": "fQhiPiPdc2MvT1Ly8qNhXXRhtOn80nxI7zN/Rzqa+kUBETdJzivUhs2KfaMA6CeArM0HlCZr9nkb5jPe3QSy0A==", + "type": "package", + "path": "runtime.any.system.runtime.interopservices/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "lib/netstandard1.5/System.Runtime.InteropServices.dll", + "lib/netstandard1.6/System.Runtime.InteropServices.dll", + "lib/netstandard1.7/System.Runtime.InteropServices.dll", + "lib/uap10.1/System.Runtime.InteropServices.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.interopservices.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.runtime.interopservices.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Runtime.InteropServices.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Text.Encoding/4.4.0-beta-24913-02": { + "sha512": "Xeqwi4XTKzoU787kjWuFmad+InOs+3GFQt7jYgTvZescP/O1QPOpXo2OBdohyM+G7krDarJufdl4S7fNvhWacQ==", + "type": "package", + "path": "runtime.any.system.text.encoding/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/netstandard1.3/System.Text.Encoding.dll", + "lib/netstandard1.7/System.Text.Encoding.dll", + "lib/uap10.1/System.Text.Encoding.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.text.encoding.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "sha512": "x32Af805w4cweMs7FNZCXHe/k2twQFE9l0/siz7P86e4PhHz6wc4BJ6I8AR3kxqBwtgSF7QPnLhN1yNxem8/MA==", + "type": "package", + "path": "runtime.any.system.text.encoding.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll", + "lib/netstandard1.7/System.Text.Encoding.Extensions.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.text.encoding.extensions.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Threading.Tasks/4.4.0-beta-24913-02": { + "sha512": "WfTJsPBqnWM3ba8Ua9xehHQbJW+RwcAu9LCWXuMhQAmsxssz15uycggqRdsS6hb2dRkZS9Jz3dtu3ns6Q7M2qw==", + "type": "package", + "path": "runtime.any.system.threading.tasks/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/netstandard1.3/System.Threading.Tasks.dll", + "lib/netstandard1.7/System.Threading.Tasks.dll", + "lib/uap10.1/System.Threading.Tasks.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.tasks.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.threading.tasks.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Threading.Tasks.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Threading.Timer/4.4.0-beta-24913-02": { + "sha512": "+IDpQUBdCovPqrD9tV2OlluOc+CNsDSs8GJ5WVa/ZBXCeVGX2qwZKO8a3nwnc81SpxO1zGlMo/Y2m6K0pDPnKQ==", + "type": "package", + "path": "runtime.any.system.threading.timer/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/netstandard1.3/System.Threading.Timer.dll", + "lib/netstandard1.7/System.Threading.Timer.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.timer.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.threading.timer.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System/4.4.0-beta-24913-02": { + "sha512": "DtEYKhWPpIDQlWxyIWBiUK7Q3H2kPxVNLuOccIJY17tS1I4b0ya5FVc6WVj47Zg3SUvFuJhZzM7EqZsl5c4RWA==", + "type": "package", + "path": "runtime.native.system/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.native.system.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.4.0-beta-24913-02": { + "sha512": "J9TS90larMk0sgXUZQceCtbLzuYm3wHud/qBTLGYC5Yd6ntuZCifJxQd7QhM5jykR2u06aPCkKiv9bodz16tyw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.unix.Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "sha512": "ErIf7An6edPAgcSJcLZAYH8KEr2Aqi2H47K860JKyXLnwK0G047ksS8VtVg0v9z2cs3p+YTLTDD6dFLbg3RLpg==", + "type": "package", + "path": "runtime.unix.microsoft.win32.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.microsoft.win32.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.microsoft.win32.primitives.nuspec", + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Primitives.dll", + "runtimes/unix/lib/netstandard1.7/Microsoft.Win32.Primitives.dll", + "runtimes/unix/lib/uap10.1/Microsoft.Win32.Primitives.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Console/4.4.0-beta-24913-02": { + "sha512": "bVyMROOfEqc/7fRDnearZ6Jpeq/Psc+EFe/srfRQeVuFLMXT6cxaCvUk+4gHJisdSZQCleIdlIy4VoS/Tdvs7w==", + "type": "package", + "path": "runtime.unix.system.console/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.console.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.console.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Console.dll", + "runtimes/unix/lib/netstandard1.7/System.Console.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "sha512": "M95VkuwoXStqkCny6RJK1pECnFevEqkrvlDjyouEUXJneIB4qSH0LHH9rfrmhQosE+Z5m3KQIh1wCGneZ932Zg==", + "type": "package", + "path": "runtime.unix.system.diagnostics.debug/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.diagnostics.debug.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.diagnostics.debug.nuspec", + "runtimes/unix-corert/lib/netcoreapp1.2/System.Diagnostics.Debug.dll", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.Debug.dll", + "runtimes/unix/lib/netstandard1.7/System.Diagnostics.Debug.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.IO.FileSystem/4.4.0-beta-24913-02": { + "sha512": "4E0WH3D3D7uAHImAj3zQBRuYHSfUrCvdyv75+TuvTLw6RKPtoBR8Jq0mVAXIqshvrUfHCyBzv+cn5oY2BrBSRA==", + "type": "package", + "path": "runtime.unix.system.io.filesystem/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.io.filesystem.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.io.filesystem.nuspec", + "runtimes/unix/lib/netstandard1.3/System.IO.FileSystem.dll", + "runtimes/unix/lib/netstandard1.7/System.IO.FileSystem.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Net.Primitives/4.4.0-beta-24913-02": { + "sha512": "DBOmYuPH4khZftILHrquXZTda5PiTaBsWejwwtYtZsvUPZtF0nYmsjbCrOycbGWzS4gFZoU6vqD4dMbku4/ZEg==", + "type": "package", + "path": "runtime.unix.system.net.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.net.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.net.primitives.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Net.Primitives.dll", + "runtimes/unix/lib/netstandard1.7/System.Net.Primitives.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Net.Sockets/4.4.0-beta-24913-02": { + "sha512": "vl7Lz6dnOa+xi/WUUsZ1G3TFhroPkPrWKWVSUGg9E6mGcK5m2VqCbqcWwneYehgallbBMLOEmL7nsq+1XXCGWQ==", + "type": "package", + "path": "runtime.unix.system.net.sockets/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.net.sockets.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.net.sockets.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Net.Sockets.dll", + "runtimes/unix/lib/netstandard1.7/System.Net.Sockets.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Private.Uri/4.4.0-beta-24913-02": { + "sha512": "CM/S/SEyzccTOXKa+HAnUpAKlqspZRgfYbEQWKxTpm3iljXcj5aWuoaZFAav3Rts34FS6A7m+zCUgJeRKFGzPQ==", + "type": "package", + "path": "runtime.unix.system.private.uri/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.private.uri.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.private.uri.nuspec", + "runtimes/unix-corert/lib/netcoreapp1.2/System.Private.Uri.dll", + "runtimes/unix/lib/netstandard1.0/System.Private.Uri.dll", + "runtimes/unix/lib/uap10.1/System.Private.Uri.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Runtime.Extensions/4.4.0-beta-24913-02": { + "sha512": "SbmnGceBoHRqOLVdRdgdOd9UKizKVmwlBpbww67Hju5rUbMdOv4AdkoHrFm+Ee7kO0xHumYHlTuenmXmuFRW4Q==", + "type": "package", + "path": "runtime.unix.system.runtime.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.runtime.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.runtime.extensions.nuspec", + "runtimes/unix-corert/lib/netcoreapp1.2/System.Runtime.Extensions.dll", + "runtimes/unix/lib/netstandard1.5/System.Runtime.Extensions.dll", + "runtimes/unix/lib/netstandard1.7/System.Runtime.Extensions.dll", + "runtimes/unix/lib/uap10.1/System.Runtime.Extensions.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.3.0": { + "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "type": "package", + "path": "system.buffers/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/.xml", + "lib/netstandard1.1/System.Buffers.dll", + "system.buffers.4.3.0.nupkg.sha512", + "system.buffers.nuspec" + ] + }, + "System.Buffers/4.4.0-beta-24913-02": { + "sha512": "759YUTLvoV/0Y8oIp+yiPruR79AB+g5q+DqhDfNBjX1UxG7mAiemru5zEKMHEUBmj19nuDpwO1VXeFw/LfqYjw==", + "type": "package", + "path": "system.buffers/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netcoreapp1.1/.xml", + "lib/netcoreapp1.1/System.Buffers.dll", + "lib/netstandard1.1/.xml", + "lib/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.dll", + "system.buffers.4.4.0-beta-24913-02.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.4.0-beta-24913-02": { + "sha512": "Y9+bO37c8uVvXqkNGm90t2geVYeaEkWjMTgOkq6CkOOAtF5BpqKTvwnelXWP2pmL5fSqAMvPhsN/UXkTTxgMRA==", + "type": "package", + "path": "system.collections/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Collections.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Collections.dll", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netcoreapp1.1/System.Collections.dll", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/netstandard1.7/System.Collections.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Collections.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.4.0-beta-24913-02.nupkg.sha512", + "system.collections.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections.Concurrent/4.4.0-beta-24913-02": { + "sha512": "eky+QV4xCtubhbJk62uICQ4iygDnhoU7ojHRZbog5bqhjGWHtzvLdLu9nBu7YPKh7GDzk2ZHfL9uNECo8kKcdA==", + "type": "package", + "path": "system.collections.concurrent/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/netstandard1.7/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netcoreapp1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.4.0-beta-24913-02.nupkg.sha512", + "system.collections.concurrent.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Console/4.4.0-beta-24913-02": { + "sha512": "AiRso5v4Rbn6JgfRevPTZ0q+bpkfuAGQtkk4Aiuu+np3c4mEdHrW/ippOuSmIQJmvyHVEg9TQxpjrjcZUhLvkw==", + "type": "package", + "path": "system.console/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/net463/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/net463/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/netstandard1.7/System.Console.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.4.0-beta-24913-02.nupkg.sha512", + "system.console.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "sha512": "1JrMoPGopozBemABZVZvaXpPjXPqboGsxyZE+r8iuaJuU6nCVpxIvZf9LTkDZdXvdzA6UN8gNyo5JVkTpDRrtQ==", + "type": "package", + "path": "system.diagnostics.debug/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Diagnostics.Debug.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.7/System.Diagnostics.Debug.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net463/System.Diagnostics.Debug.dll", + "system.diagnostics.debug.4.4.0-beta-24913-02.nupkg.sha512", + "system.diagnostics.debug.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec" + ] + }, + "System.Diagnostics.Tools/4.4.0-beta-24913-02": { + "sha512": "3+1/MJ0ME+wAF6sjVw4c9YapbKctjZjGiiUInRIzAcCApIgJZQH9gskNntwbsVdw2C5E/CkPkczob5ytiFz+oQ==", + "type": "package", + "path": "system.diagnostics.tools/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Diagnostics.Tools.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.7/System.Diagnostics.Tools.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.4.0-beta-24913-02.nupkg.sha512", + "system.diagnostics.tools.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "sha512": "dupkxZ5nLUDX8e9OqQ1XqPJM54UZo3XGRiFeqdF/a59R90KbVSmmhqT4RPwa92fi4Unr401DQXMDBEVLLmJo9w==", + "type": "package", + "path": "system.diagnostics.tracing/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.7/System.Diagnostics.Tracing.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.4.0-beta-24913-02.nupkg.sha512", + "system.diagnostics.tracing.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Dynamic.Runtime/4.4.0-beta-24913-02": { + "sha512": "mbTmaXJ97fHhsbgzaZILTYCp1roBgOXoHhaN1hTmR/To9EEKNGERX61hVP099pAACklnPyrVrEFBZdEEAkXzDg==", + "type": "package", + "path": "system.dynamic.runtime/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Dynamic.Runtime.dll", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.dll", + "lib/netstandard1.7/System.Dynamic.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.7/System.Dynamic.Runtime.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.4.0-beta-24913-02.nupkg.sha512", + "system.dynamic.runtime.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Globalization/4.4.0-beta-24913-02": { + "sha512": "KxBYuqGY1P0LBAn1uXLyiYf3qXiNlhDCfCtLBemYA7mouGqqs+YPgYo2WuI5pqGU6VjAWiQvAT6PeNhofDvTHw==", + "type": "package", + "path": "system.globalization/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Globalization.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Globalization.dll", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/netstandard1.7/System.Globalization.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Globalization.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.4.0-beta-24913-02.nupkg.sha512", + "system.globalization.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.IO/4.4.0-beta-24913-02": { + "sha512": "BEqLHSTjhsWFdxz0q5OYlFc2Ic7NcWbKrn13IulLnRpF9yJClv3W2CxSHPq2IB48qKvODoYO9wEKax74+JK8eg==", + "type": "package", + "path": "system.io/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netcoreapp1.1/System.IO.dll", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/netstandard1.7/System.IO.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.IO.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.4.0-beta-24913-02.nupkg.sha512", + "system.io.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.4.0-beta-24913-02": { + "sha512": "DvhfpfWgOwoxyjPNYKhMV0xZuqGdznnaC7aIMzBc2oh+u19jZrloGl11P2DnFKJLfsth5DPLvTMxXmvKLeuykw==", + "type": "package", + "path": "system.io.filesystem/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/net463/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/net463/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/netstandard1.7/System.IO.FileSystem.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.4.0-beta-24913-02.nupkg.sha512", + "system.io.filesystem.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.FileSystem.Primitives/4.4.0-beta-24913-02": { + "sha512": "wRiqs3kiUczfE2pBubg2o3u06yQeUeqZruZG8ckw5/QJHRMCcnSaf//dyhJs+Qnq7uOYVoI2p8rEnYjm6w9omw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/net463/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.7/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/net463/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.7/System.IO.FileSystem.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "system.io.filesystem.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq/4.4.0-beta-24913-02": { + "sha512": "bjnCiY6U3f9k7fH/R3IQohZniRlLB3MdQ59n0nH8oa26YCFZO+OgjdVbSj67RgVpxupYLzXCZ80li32HcL4qdQ==", + "type": "package", + "path": "system.linq/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netcoreapp1.1/System.Linq.dll", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.4.0-beta-24913-02.nupkg.sha512", + "system.linq.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq.Expressions/4.4.0-beta-24913-02": { + "sha512": "FGRSqzfppwrXJSO+91Bi3BEOV1xejk/VHOL3bZRJYCshZ67t8s5OeOk8ywh96Xi12+RFIsXkIzJYBBYC3xV/ow==", + "type": "package", + "path": "system.linq.expressions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/netstandard1.7/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.7/System.Linq.Expressions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.4.0-beta-24913-02.nupkg.sha512", + "system.linq.expressions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.NameResolution/4.4.0-beta-24913-02": { + "sha512": "xTSaAEadOMDmmGLv60VMP1GtqMq++l23ld96Rg3X/Sphde1FFLB9nUetcoWx7VwfC5sJ1m70YprLKXDS4PNG8A==", + "type": "package", + "path": "system.net.nameresolution/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.NameResolution.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.xml", + "ref/netstandard1.3/de/System.Net.NameResolution.xml", + "ref/netstandard1.3/es/System.Net.NameResolution.xml", + "ref/netstandard1.3/fr/System.Net.NameResolution.xml", + "ref/netstandard1.3/it/System.Net.NameResolution.xml", + "ref/netstandard1.3/ja/System.Net.NameResolution.xml", + "ref/netstandard1.3/ko/System.Net.NameResolution.xml", + "ref/netstandard1.3/ru/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", + "runtimes/win/lib/net46/System.Net.NameResolution.dll", + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll", + "system.net.nameresolution.4.4.0-beta-24913-02.nupkg.sha512", + "system.net.nameresolution.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.ObjectModel/4.4.0-beta-24913-02": { + "sha512": "7fImkhTugA/dsFg/prA4UH7CoP4xmf7Brd5/v+dUA62mND9foQQnTOq0xSCOVZ6b25sy0kKqxLUtekZvRIMlkQ==", + "type": "package", + "path": "system.objectmodel/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.ObjectModel.dll", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/netstandard1.7/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netcoreapp1.1/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.7/System.ObjectModel.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.4.0-beta-24913-02.nupkg.sha512", + "system.objectmodel.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Private.DataContractSerialization/4.4.0-beta-24913-02": { + "sha512": "+iOLB+QulHm//iXRtQqjlHuv4Mb7CN2F780YNPt5UI07zgCBTpOMGPJpkIFkbdDez6KUhu8q0MEdPFxhnhK6SQ==", + "type": "package", + "path": "system.private.datacontractserialization/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.3/System.Private.DataContractSerialization.dll", + "lib/netstandard1.7/System.Private.DataContractSerialization.dll", + "ref/netstandard/_._", + "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll", + "system.private.datacontractserialization.4.4.0-beta-24913-02.nupkg.sha512", + "system.private.datacontractserialization.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Private.Uri/4.4.0-beta-24913-02": { + "sha512": "P5WV/+fFObWRGhcbiUIx+23/hz4k/x6xFoePjam1t6xvKw+E1E4KkM8O2sRkZQ0h8i7ATr04oCi5jNnzg2+idg==", + "type": "package", + "path": "system.private.uri/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "system.private.uri.4.4.0-beta-24913-02.nupkg.sha512", + "system.private.uri.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection/4.4.0-beta-24913-02": { + "sha512": "BYjVZSHD4JDmhn5LueNSF16qU8WA6V2YAakX+q+U9lAlj/B+gV+l9vO2RkJjzexvDcZLluFzIUdpWDGtOj95wA==", + "type": "package", + "path": "system.reflection/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/netstandard1.7/System.Reflection.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Reflection.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit/4.4.0-beta-24913-02": { + "sha512": "8t9c/WJwVW4lM4furhRKIGDH4YIMnqWeo/tXktHJpczi6SiBpWfi+RymwRVbbxrPy7+b+jgtspwM0AHizm8hRg==", + "type": "package", + "path": "system.reflection.emit/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.emit.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit.ILGeneration/4.4.0-beta-24913-02": { + "sha512": "StjC21V2SztX1QUCMlwE1QfXXJhmmNJVu07DDLqj/fn6F23tIHB+EDcroeA7QKRQbfarUxL4MzZAJqEhcfPqYA==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit.Lightweight/4.4.0-beta-24913-02": { + "sha512": "qK7GukxWqkcU5tG7YLLLZdAvaDsAFk6Kp6sXd4Cxpm8jcoHNzCPV48dZMx64TczZHtbedHwwkYJe5JKTHnGcKA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Extensions/4.4.0-beta-24913-02": { + "sha512": "6f9M3xv5HkaZEbZLsjRSEHekr1bbEFUbtpr/8NHGJ3cwjdUmfirIwT3i69VxPy0xx9nj8OLbfGitQcPOUsK/sA==", + "type": "package", + "path": "system.reflection.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Reflection.Extensions.dll", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/netstandard1.3/System.Reflection.Extensions.dll", + "lib/netstandard1.7/System.Reflection.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.1/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.7/System.Reflection.Extensions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Reflection.Extensions.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll", + "runtimes/aot/lib/uap10.1/System.Reflection.Extensions.dll", + "system.reflection.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Primitives/4.4.0-beta-24913-02": { + "sha512": "qR0QeMteCI5xqH473N019aiA3kSrUYIsxHb5yD8EMeEY9ZQpDe7eETxaxm9mDtZsk5ykm3fboDda8cAsHqM5+w==", + "type": "package", + "path": "system.reflection.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Reflection.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/portable45-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.7/System.Reflection.Primitives.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/portable45-net45+win8+wpa81/_._", + "ref/uap10.1/System.Reflection.Primitives.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.TypeExtensions/4.4.0-preview2-25302-03": { + "sha512": "GSFwBW4h06Y2B14gBSQn2mXOClBEuKnycjdzvhsrLY+mQPieCtsP4AiOC95PV/8zwMM3rXLfjguERttLuKkibA==", + "type": "package", + "path": "system.reflection.typeextensions/4.4.0-preview2-25302-03", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net461/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netcoreapp1.0/System.Reflection.TypeExtensions.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/netstandard2.0/System.Reflection.TypeExtensions.dll", + "lib/uap10.1/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net461/System.Reflection.TypeExtensions.dll", + "ref/net461/System.Reflection.TypeExtensions.xml", + "ref/net461/de/System.Reflection.TypeExtensions.xml", + "ref/net461/es/System.Reflection.TypeExtensions.xml", + "ref/net461/fr/System.Reflection.TypeExtensions.xml", + "ref/net461/it/System.Reflection.TypeExtensions.xml", + "ref/net461/ja/System.Reflection.TypeExtensions.xml", + "ref/net461/ko/System.Reflection.TypeExtensions.xml", + "ref/net461/ru/System.Reflection.TypeExtensions.xml", + "ref/net461/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/net461/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/System.Reflection.TypeExtensions.dll", + "ref/netstandard2.0/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/uap10.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "runtimes/aot/lib/uap10.1/_._", + "runtimes/win/lib/net461/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.4.0-preview2-25302-03.nupkg.sha512", + "system.reflection.typeextensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "sha512": "zbswj86i6yoQyMybsHm16OPp5/uoWqTJX0X7QuguoBpOdBc7XJ9H68dvuRb4VUKh/WtbvUiftn2PnLCDC5gZxA==", + "type": "package", + "path": "system.resources.resourcemanager/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Resources.ResourceManager.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.7/System.Resources.ResourceManager.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.4.0-beta-24913-02.nupkg.sha512", + "system.resources.resourcemanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime/4.4.0-beta-24913-02": { + "sha512": "OjwRltLPQUMt7uJ4vQklRo1fFK9WsL10GMyFKB+SdZknqXzxpM3zThIjMFtiQJtf8hmXTQU8H0DkMWinTHroJw==", + "type": "package", + "path": "system.runtime/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netcoreapp1.1/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/netstandard1.7/System.Runtime.dll", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/uap10.1/System.Runtime.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Extensions/4.4.0-beta-24913-02": { + "sha512": "v1XLBAT4zvJdo4pP6wXvasll7+0v/B0X+TNueBfqsprfP0xGPOm8TOUB2ln/djZrnz/AWSOLlevjIFs6PhJD+Q==", + "type": "package", + "path": "system.runtime.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netcoreapp1.1/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.7/System.Runtime.Extensions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Runtime.Extensions.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/uap10.1/System.Runtime.Extensions.dll", + "runtimes/win/lib/net461/System.Runtime.Extensions.dll", + "system.runtime.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Handles/4.4.0-beta-24913-02": { + "sha512": "5Z5jTG+Lx8ttF1ukhKhF5cMyNbfZqsYhp8HFg6sHZojo0vPfeXYce0eRHiWkPxcZ1yHVz6V/l7iBPJIDR4nC8Q==", + "type": "package", + "path": "system.runtime.handles/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/net463/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/net463/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/netstandard1.7/System.Runtime.Handles.dll", + "ref/uap10.1/System.Runtime.Handles.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.handles.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "sha512": "T7Tv7MQGriQdoTjyztjsICDhQrsoIE4DH5yu+UlUnH5Ze+h3SRTJSdnOsXVnsA5bjq7jDTm7aFJM47KYBYi1vA==", + "type": "package", + "path": "system.runtime.interopservices/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.7/System.Runtime.InteropServices.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/uap10.1/System.Runtime.InteropServices.dll", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.interopservices.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.3.0": { + "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==", + "type": "package", + "path": "system.runtime.serialization.formatters/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Runtime.Serialization.Formatters.dll", + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Runtime.Serialization.Formatters.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.serialization.formatters.4.3.0.nupkg.sha512", + "system.runtime.serialization.formatters.nuspec" + ] + }, + "System.Runtime.Serialization.Json/4.4.0-beta-24913-02": { + "sha512": "r4QnoENLFESvBkuLRWFIJZQYgFgqCPt6m9MjNJfQ363jmN1KknJT5SUc/tExbVm2nLjJLANFKDdQvKfgwI7d4w==", + "type": "package", + "path": "system.runtime.serialization.json/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Serialization.Json.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Json.dll", + "lib/netstandard1.7/System.Runtime.Serialization.Json.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Serialization.Json.dll", + "ref/netcore50/System.Runtime.Serialization.Json.xml", + "ref/netcore50/de/System.Runtime.Serialization.Json.xml", + "ref/netcore50/es/System.Runtime.Serialization.Json.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Json.xml", + "ref/netcore50/it/System.Runtime.Serialization.Json.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Json.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Json.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Json.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Json.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Json.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Json.xml", + "ref/netstandard1.7/System.Runtime.Serialization.Json.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.serialization.json.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.serialization.json.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Serialization.Primitives/4.4.0-beta-24913-02": { + "sha512": "/7og6DM3J/b87Zxuggagf7SEe62EzP3Fmu3yZX1fodgEAzph4Z/fzGgk6d6daNYe81ca9R9lcnZKKAzBjsfAFA==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Primitives.dll", + "lib/net463/System.Runtime.Serialization.Primitives.dll", + "lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "lib/netstandard1.7/System.Runtime.Serialization.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.1/System.Runtime.Serialization.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Primitives.dll", + "ref/net463/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.7/System.Runtime.Serialization.Primitives.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Runtime.Serialization.Primitives.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "runtimes/aot/lib/uap10.1/System.Runtime.Serialization.Primitives.dll", + "system.runtime.serialization.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Serialization.Xml/4.4.0-beta-24913-02": { + "sha512": "pVGJfrv+toC1Bc7mLPGFoU4uZjolnhIELAVkdcMvpjJIva0Y3eB8r2/HnfPYtA40rAu3E0aC3X3MSFG1T3ACMQ==", + "type": "package", + "path": "system.runtime.serialization.xml/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Xml.dll", + "lib/net463/System.Runtime.Serialization.Xml.dll", + "lib/netcore50/System.Runtime.Serialization.Xml.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Xml.dll", + "lib/netstandard1.7/System.Runtime.Serialization.Xml.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Xml.dll", + "ref/net463/System.Runtime.Serialization.Xml.dll", + "ref/netcore50/System.Runtime.Serialization.Xml.dll", + "ref/netcore50/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/de/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/es/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/it/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Xml.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Xml.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.7/System.Runtime.Serialization.Xml.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.serialization.xml.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.serialization.xml.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Claims/4.4.0-beta-24913-02": { + "sha512": "/PPqq7MEKJvP8kE/ud4uzqvi4gYQICRMwQV2+hxJkd2A9vKyGvDmpq2HbbMPO6U2lMTwdMUmdUm7HgEoCcy6kw==", + "type": "package", + "path": "system.security.claims/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/net463/System.Security.Claims.dll", + "lib/netstandard1.3/System.Security.Claims.dll", + "lib/netstandard1.7/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/net463/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.xml", + "ref/netstandard1.3/de/System.Security.Claims.xml", + "ref/netstandard1.3/es/System.Security.Claims.xml", + "ref/netstandard1.3/fr/System.Security.Claims.xml", + "ref/netstandard1.3/it/System.Security.Claims.xml", + "ref/netstandard1.3/ja/System.Security.Claims.xml", + "ref/netstandard1.3/ko/System.Security.Claims.xml", + "ref/netstandard1.3/ru/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hans/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hant/System.Security.Claims.xml", + "ref/netstandard1.7/System.Security.Claims.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.claims.4.4.0-beta-24913-02.nupkg.sha512", + "system.security.claims.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Principal/4.4.0-beta-24913-02": { + "sha512": "OSfvB2svUkTf3TgH2NRsZT+EOqSt57SgjQ7fahG2ahH/JFHLxfNdCnYV8l1FFjAJzHcCS6ExQvhq0wIAoa/wmA==", + "type": "package", + "path": "system.security.principal/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Security.Principal.dll", + "lib/netcore50/System.Security.Principal.dll", + "lib/netstandard1.0/System.Security.Principal.dll", + "lib/netstandard1.7/System.Security.Principal.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.1/System.Security.Principal.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/netcore50/de/System.Security.Principal.xml", + "ref/netcore50/es/System.Security.Principal.xml", + "ref/netcore50/fr/System.Security.Principal.xml", + "ref/netcore50/it/System.Security.Principal.xml", + "ref/netcore50/ja/System.Security.Principal.xml", + "ref/netcore50/ko/System.Security.Principal.xml", + "ref/netcore50/ru/System.Security.Principal.xml", + "ref/netcore50/zh-hans/System.Security.Principal.xml", + "ref/netcore50/zh-hant/System.Security.Principal.xml", + "ref/netstandard1.0/System.Security.Principal.dll", + "ref/netstandard1.0/System.Security.Principal.xml", + "ref/netstandard1.0/de/System.Security.Principal.xml", + "ref/netstandard1.0/es/System.Security.Principal.xml", + "ref/netstandard1.0/fr/System.Security.Principal.xml", + "ref/netstandard1.0/it/System.Security.Principal.xml", + "ref/netstandard1.0/ja/System.Security.Principal.xml", + "ref/netstandard1.0/ko/System.Security.Principal.xml", + "ref/netstandard1.0/ru/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hans/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hant/System.Security.Principal.xml", + "ref/netstandard1.7/System.Security.Principal.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Security.Principal.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/uap10.1/System.Security.Principal.dll", + "system.security.principal.4.4.0-beta-24913-02.nupkg.sha512", + "system.security.principal.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.4.0-beta-24913-02": { + "sha512": "ZHYzVfmY8hv2VGl8zLEI5tG3m5tZgoToMNq84ZZR3zUpFjKMaKVviIN+1r+5C+f6Xyw7T45sGMmdMya69P+bnA==", + "type": "package", + "path": "system.security.principal.windows/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net463/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net463/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard1.7/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netstandard1.7/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net463/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.7/System.Security.Principal.Windows.dll", + "system.security.principal.windows.4.4.0-beta-24913-02.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.4.0-beta-24913-02": { + "sha512": "+IM39s4C1QMr/qKpiVlLOr+FIfyXVTe7tpIx39hoTcAvZY+sXhMMS5ErJeJdaSMZgL5ZyGzcuxkfeAYDKloW6w==", + "type": "package", + "path": "system.text.encoding/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.Encoding.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.7/System.Text.Encoding.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Text.Encoding.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.4.0-beta-24913-02.nupkg.sha512", + "system.text.encoding.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "sha512": "jK3sE8t8Ngi1hSKmPI1RGXaqdtCT6dPPvfrFWDn8u45r6Zh4RJk4962v6AU5saxkssCfTiVhqDK+Drageb5mJA==", + "type": "package", + "path": "system.text.encoding.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.Encoding.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.7/System.Text.Encoding.Extensions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.text.encoding.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.RegularExpressions/4.4.0-beta-24913-02": { + "sha512": "eb/QjBezP1/UbivTA+xpNakEST/xnm1/yc563KRUINfsZ+Owz3By8ofAV2S94usp087bWls5v1sX4rZAjuTuxg==", + "type": "package", + "path": "system.text.regularexpressions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/netstandard1.7/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.7/System.Text.RegularExpressions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.4.0-beta-24913-02.nupkg.sha512", + "system.text.regularexpressions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading/4.4.0-beta-24913-02": { + "sha512": "IDvvo0zC8/kGPUnj2l79COn+vizKPxDoJ9BcLMo5R8H7CImr4t98kZyChhY1lu2PZfxo/t+4QrtXDgZflWnPkw==", + "type": "package", + "path": "system.threading/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Threading.dll", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/netstandard1.7/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Threading.dll", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/netstandard1.7/System.Threading.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks/4.4.0-beta-24913-02": { + "sha512": "tphb/t923mWZs75EwmJg6CEB5fgC2YRItN37XvPjANv9FmCxo9THV+eD8/Fdw2SxeyZ9nJtgupbk076ZAvTV1A==", + "type": "package", + "path": "system.threading.tasks/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Threading.Tasks.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.7/System.Threading.Tasks.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Threading.Tasks.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.tasks.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks.Extensions/4.4.0-beta-24913-02": { + "sha512": "NWU1a7pXP2AySgi4ZAN0qjkzXIYRoPTg6hdMEZSxAIf7mMupJTlTB0tmJZ8QarD/33ClxoSOwN6hjCSukJ9pmw==", + "type": "package", + "path": "system.threading.tasks.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "system.threading.tasks.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.ThreadPool/4.4.0-beta-24913-02": { + "sha512": "lD4kymw3NHChTiqHFH9zxVvfTY8uLBy34KdBP661x8FIeiN78DwQEKMVZOQ2zZ/ThmARWxG4E7YzH1NOkJacGQ==", + "type": "package", + "path": "system.threading.threadpool/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.ThreadPool.dll", + "lib/net463/System.Threading.ThreadPool.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.ThreadPool.dll", + "lib/netstandard1.7/System.Threading.ThreadPool.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.ThreadPool.dll", + "ref/net463/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/de/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/es/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/it/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml", + "ref/netstandard1.7/System.Threading.ThreadPool.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.threadpool.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.threadpool.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.ValueTuple/4.3.1": { + "sha512": "xzDmg26Wb2x2rFDjwziaMYQJqxhrK+b4OUC008o7CnZhUMb2p5XfwgOgAQ/WlKhqxMUSDWRUm5/lNTKdh27pJA==", + "type": "package", + "path": "system.valuetuple/4.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netstandard1.0/.xml", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/.xml", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.3.1.nupkg.sha512", + "system.valuetuple.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.4.0-beta-24913-02": { + "sha512": "xrGH2gJKLBb6cPvZPtdk9P3CXg3TpPoZOFhv8bJCxk1wYzJfPbeQbeXwAJOS/fnu9tbMatwmJO0orAgopQAS0A==", + "type": "package", + "path": "system.xml.readerwriter/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/net463/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/netstandard1.7/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/net463/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.7/System.Xml.ReaderWriter.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.4.0-beta-24913-02.nupkg.sha512", + "system.xml.readerwriter.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.XDocument/4.4.0-beta-24913-02": { + "sha512": "DV81bpi7DHWPJpZbYBYrdPJFpJFwxtP8MLuoakFOym7ctdmY6M+yNci94MAzVirbno/ESZRSZeMZ/momBdNLHQ==", + "type": "package", + "path": "system.xml.xdocument/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Xml.XDocument.dll", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/netstandard1.7/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.7/System.Xml.XDocument.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.4.0-beta-24913-02.nupkg.sha512", + "system.xml.xdocument.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.XmlDocument/4.4.0-beta-24913-02": { + "sha512": "IgZcUmPiMEq7qXkg1pNX7vKx7a70QdaNo1hvpuKInNMCXAjmvg/CYY6uZTVWMxkZV4xyEY4kt5UnBhvn4MSjyQ==", + "type": "package", + "path": "system.xml.xmldocument/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/net463/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/netstandard1.7/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/net463/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/netstandard1.7/System.Xml.XmlDocument.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.4.0-beta-24913-02.nupkg.sha512", + "system.xml.xmldocument.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.XmlSerializer/4.4.0-beta-24913-02": { + "sha512": "KC0JWSxgF0dtqeRpMxyWPDRrQdnqTVnBb0AmnmH2XcvqwMH9KIhSuk6zdt7VmZJIhhlj3rGOZ7THcLYDIX8Ttg==", + "type": "package", + "path": "system.xml.xmlserializer/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Xml.XmlSerializer.dll", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "lib/netstandard1.3/System.Xml.XmlSerializer.dll", + "lib/netstandard1.7/System.Xml.XmlSerializer.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Xml.XmlSerializer.dll", + "ref/netcore50/System.Xml.XmlSerializer.dll", + "ref/netcore50/System.Xml.XmlSerializer.xml", + "ref/netcore50/de/System.Xml.XmlSerializer.xml", + "ref/netcore50/es/System.Xml.XmlSerializer.xml", + "ref/netcore50/fr/System.Xml.XmlSerializer.xml", + "ref/netcore50/it/System.Xml.XmlSerializer.xml", + "ref/netcore50/ja/System.Xml.XmlSerializer.xml", + "ref/netcore50/ko/System.Xml.XmlSerializer.xml", + "ref/netcore50/ru/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/System.Xml.XmlSerializer.dll", + "ref/netstandard1.0/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/de/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/es/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/it/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/System.Xml.XmlSerializer.dll", + "ref/netstandard1.3/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/de/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/es/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/it/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.7/System.Xml.XmlSerializer.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "system.xml.xmlserializer.4.4.0-beta-24913-02.nupkg.sha512", + "system.xml.xmlserializer.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "xunit/2.4.1-pre.build.4059": { + "sha512": "Kt50VVI9yqbPLPICi1J2Sl2zoidhyMqbT+ywCSINDDXCJhVOXVBoE/1geWui5Sppx8Cv5U0DmYCLxveaOB0mLw==", + "type": "package", + "path": "xunit/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "xunit.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.nuspec" + ] + }, + "xunit.abstractions/2.0.3": { + "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", + "type": "package", + "path": "xunit.abstractions/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/netstandard1.0/xunit.abstractions.dll", + "lib/netstandard1.0/xunit.abstractions.xml", + "lib/netstandard2.0/xunit.abstractions.dll", + "lib/netstandard2.0/xunit.abstractions.xml", + "xunit.abstractions.2.0.3.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.analyzers/0.10.0": { + "sha512": "4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg==", + "type": "package", + "path": "xunit.analyzers/0.10.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/xunit.analyzers.dll", + "tools/install.ps1", + "tools/uninstall.ps1", + "xunit.analyzers.0.10.0.nupkg.sha512", + "xunit.analyzers.nuspec" + ] + }, + "xunit.assert/2.4.1-pre.build.4059": { + "sha512": "PrfmhpgBTilGWP4DC6Q2FV17TEfTpnCARMjYNMQvUF1IFV5DhXNU5ChC0JeL17ctp89krn4Pld4/Wiuq4ILMxw==", + "type": "package", + "path": "xunit.assert/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.1/xunit.assert.dll", + "lib/netstandard1.1/xunit.assert.xml", + "lib/netstandard2.0/xunit.assert.dll", + "lib/netstandard2.0/xunit.assert.xml", + "xunit.assert.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.core/2.4.1-pre.build.4059": { + "sha512": "nQh89ZP+wmC79euBg5p/6Jr8rugPTQo/GAx9Wry2Pgu9q4ltDv9XeQTqsQE/trvqOjyrTRtCOQT1P+vcufj0Kg==", + "type": "package", + "path": "xunit.core/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/xunit.core.props", + "build/xunit.core.targets", + "buildMultiTargeting/xunit.core.props", + "buildMultiTargeting/xunit.core.targets", + "xunit.core.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.core.nuspec" + ] + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "sha512": "MpnCaHPR67FdYgdkbzuSIxtYdGJaY6WwjotyvifGKcy94M3Rm2eCQqKQsFSN1TbcRhHRCweOo24+E+wnGxjuTw==", + "type": "package", + "path": "xunit.extensibility.core/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/xunit.core.dll", + "lib/net452/xunit.core.dll.tdnet", + "lib/net452/xunit.core.xml", + "lib/net452/xunit.runner.tdnet.dll", + "lib/net452/xunit.runner.utility.net452.dll", + "lib/netstandard1.1/xunit.core.dll", + "lib/netstandard1.1/xunit.core.xml", + "lib/netstandard2.0/xunit.core.dll", + "lib/netstandard2.0/xunit.core.xml", + "xunit.extensibility.core.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "sha512": "sLmjOlIAAs4omfY/019PQMXWkxpxd/CfVnTEMBBEN89fU/bPfeoNRBjnqJ54tHpK2xDCPUye19PNSFH4aW6B8Q==", + "type": "package", + "path": "xunit.extensibility.execution/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/xunit.execution.desktop.dll", + "lib/net452/xunit.execution.desktop.xml", + "lib/netstandard1.1/xunit.execution.dotnet.dll", + "lib/netstandard1.1/xunit.execution.dotnet.xml", + "lib/netstandard2.0/xunit.execution.dotnet.dll", + "lib/netstandard2.0/xunit.execution.dotnet.xml", + "xunit.extensibility.execution.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "sha512": "FBASqurcvUoVQ52vY2LH4XUf1/Hkz9wmcuBj5IqIhEpgK+YjhWePepguSlpSre44hhhWNe5WO3XIrZ6pGTbyng==", + "type": "package", + "path": "xunit.performance.api/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.api.dll", + "lib/net461/xunit.performance.api.xml", + "lib/netstandard1.5/xunit.performance.api.dll", + "lib/netstandard1.5/xunit.performance.api.xml", + "xunit.performance.api.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.api.nuspec" + ] + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "sha512": "1CEv1zleRb8D0mDckZjpR8VPaP+2YSeMUAnnb/a3aL0DrG9IEeTN2Uu+30IaX/OHG7iuqLX9zWja+sey76Us0w==", + "type": "package", + "path": "xunit.performance.core/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/netstandard1.3/xunit.performance.core.dll", + "lib/netstandard1.3/xunit.performance.core.xml", + "xunit.performance.core.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.core.nuspec" + ] + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "sha512": "hfNLz/+fA1CqHPQWexPoQBDMs1y1x8gdy1WgQH1nUG5Jf1KVviUddy3+MCTEbuELyqrcLpkR/p57WLUAYKwhCw==", + "type": "package", + "path": "xunit.performance.execution/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.execution.dll", + "lib/net461/xunit.performance.execution.xml", + "lib/netstandard1.5/xunit.performance.execution.dll", + "lib/netstandard1.5/xunit.performance.execution.xml", + "xunit.performance.execution.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.execution.nuspec" + ] + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "sha512": "VWtijjK9HfQvx2nmQ15hEAtBdHEmWSVk0Gc60+yEF+xMq/wZmD0jSvCykW5Jz0ponX88Z6RU39ZjRDq+vLnCgg==", + "type": "package", + "path": "xunit.performance.metrics/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.metrics.dll", + "lib/net461/xunit.performance.metrics.xml", + "lib/netstandard1.5/xunit.performance.metrics.dll", + "lib/netstandard1.5/xunit.performance.metrics.xml", + "xunit.performance.metrics.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.metrics.nuspec" + ] + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "sha512": "oWTxKNZbtkn8HBHi59zxTRP4y80SlaOqFOu+ausTLOyOPr7/aZ39U6L9F8mh69890NRbW2Qcd/UdP3YvPsseHw==", + "type": "package", + "path": "xunit.runner.console/2.4.1-pre.build.4059", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/xunit.runner.console.props", + "tools/net452/xunit.abstractions.dll", + "tools/net452/xunit.console.exe", + "tools/net452/xunit.console.exe.config", + "tools/net452/xunit.console.x86.exe", + "tools/net452/xunit.console.x86.exe.config", + "tools/net452/xunit.runner.reporters.net452.dll", + "tools/net452/xunit.runner.utility.net452.dll", + "tools/net46/xunit.abstractions.dll", + "tools/net46/xunit.console.exe", + "tools/net46/xunit.console.exe.config", + "tools/net46/xunit.console.x86.exe", + "tools/net46/xunit.console.x86.exe.config", + "tools/net46/xunit.runner.reporters.net452.dll", + "tools/net46/xunit.runner.utility.net452.dll", + "tools/net461/xunit.abstractions.dll", + "tools/net461/xunit.console.exe", + "tools/net461/xunit.console.exe.config", + "tools/net461/xunit.console.x86.exe", + "tools/net461/xunit.console.x86.exe.config", + "tools/net461/xunit.runner.reporters.net452.dll", + "tools/net461/xunit.runner.utility.net452.dll", + "tools/net462/xunit.abstractions.dll", + "tools/net462/xunit.console.exe", + "tools/net462/xunit.console.exe.config", + "tools/net462/xunit.console.x86.exe", + "tools/net462/xunit.console.x86.exe.config", + "tools/net462/xunit.runner.reporters.net452.dll", + "tools/net462/xunit.runner.utility.net452.dll", + "tools/net47/xunit.abstractions.dll", + "tools/net47/xunit.console.exe", + "tools/net47/xunit.console.exe.config", + "tools/net47/xunit.console.x86.exe", + "tools/net47/xunit.console.x86.exe.config", + "tools/net47/xunit.runner.reporters.net452.dll", + "tools/net47/xunit.runner.utility.net452.dll", + "tools/net471/xunit.abstractions.dll", + "tools/net471/xunit.console.exe", + "tools/net471/xunit.console.exe.config", + "tools/net471/xunit.console.x86.exe", + "tools/net471/xunit.console.x86.exe.config", + "tools/net471/xunit.runner.reporters.net452.dll", + "tools/net471/xunit.runner.utility.net452.dll", + "tools/net472/xunit.abstractions.dll", + "tools/net472/xunit.console.exe", + "tools/net472/xunit.console.exe.config", + "tools/net472/xunit.console.x86.exe", + "tools/net472/xunit.console.x86.exe.config", + "tools/net472/xunit.runner.reporters.net452.dll", + "tools/net472/xunit.runner.utility.net452.dll", + "tools/netcoreapp1.0/xunit.abstractions.dll", + "tools/netcoreapp1.0/xunit.console.deps.json", + "tools/netcoreapp1.0/xunit.console.dll", + "tools/netcoreapp1.0/xunit.console.dll.config", + "tools/netcoreapp1.0/xunit.console.runtimeconfig.json", + "tools/netcoreapp1.0/xunit.runner.reporters.netcoreapp10.dll", + "tools/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll", + "tools/netcoreapp1.0/xunit.runner.utility.netcoreapp10.xml", + "tools/netcoreapp2.0/xunit.abstractions.dll", + "tools/netcoreapp2.0/xunit.console.deps.json", + "tools/netcoreapp2.0/xunit.console.dll", + "tools/netcoreapp2.0/xunit.console.dll.config", + "tools/netcoreapp2.0/xunit.console.runtimeconfig.json", + "tools/netcoreapp2.0/xunit.runner.reporters.netcoreapp10.dll", + "tools/netcoreapp2.0/xunit.runner.utility.netcoreapp10.dll", + "tools/netcoreapp2.0/xunit.runner.utility.netcoreapp10.xml", + "xunit.runner.console.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.runner.console.nuspec" + ] + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "sha512": "YyTcFxooSkYo9gr8HgLhHZ7T5PHjnCLC9dGXgbLwMCNZeqO+DzY8nWehE++FasEwMAlUv87MLhLEVXoVvMQtKQ==", + "type": "package", + "path": "xunit.runner.utility/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/xunit.runner.utility.net35.dll", + "lib/net35/xunit.runner.utility.net35.xml", + "lib/net452/xunit.runner.utility.net452.dll", + "lib/net452/xunit.runner.utility.net452.xml", + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll", + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.xml", + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll", + "lib/netstandard1.1/xunit.runner.utility.netstandard11.xml", + "lib/netstandard1.5/xunit.runner.utility.netstandard15.dll", + "lib/netstandard1.5/xunit.runner.utility.netstandard15.xml", + "lib/netstandard2.0/xunit.runner.utility.netstandard20.dll", + "lib/netstandard2.0/xunit.runner.utility.netstandard20.xml", + "lib/uap10.0/xunit.runner.utility.uwp10.dll", + "lib/uap10.0/xunit.runner.utility.uwp10.pri", + "lib/uap10.0/xunit.runner.utility.uwp10.xml", + "xunit.runner.utility.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + ".NETStandard,Version=v1.4": [ + "Microsoft.Diagnostics.Tracing.TraceEvent >= 2.0.43", + "Microsoft.NETCore.Platforms >= 3.1.0-preview3.19551.4", + "Newtonsoft.Json >= 7.0.1", + "System.Console >= 4.4.0-beta-24913-02", + "System.Dynamic.Runtime >= 4.4.0-beta-24913-02", + "System.IO >= 4.4.0-beta-24913-02", + "System.IO.FileSystem >= 4.4.0-beta-24913-02", + "System.Linq >= 4.4.0-beta-24913-02", + "System.ObjectModel >= 4.4.0-beta-24913-02", + "System.Reflection >= 4.4.0-beta-24913-02", + "System.Reflection.Extensions >= 4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions >= 4.4.0-preview2-25302-03", + "System.Runtime >= 4.4.0-beta-24913-02", + "System.Runtime.Serialization.Json >= 4.4.0-beta-24913-02", + "System.Runtime.Serialization.Primitives >= 4.4.0-beta-24913-02", + "System.Runtime.Serialization.Xml >= 4.4.0-beta-24913-02", + "System.Text.RegularExpressions >= 4.4.0-beta-24913-02", + "System.Xml.XmlDocument >= 4.4.0-beta-24913-02", + "System.Xml.XmlSerializer >= 4.4.0-beta-24913-02", + "xunit >= 2.4.1-pre.build.4059", + "xunit.performance.api >= 1.0.0-beta-build0015", + "xunit.performance.core >= 1.0.0-beta-build0015", + "xunit.performance.execution >= 1.0.0-beta-build0015", + "xunit.performance.metrics >= 1.0.0-beta-build0015", + "xunit.runner.console >= 2.4.1-pre.build.4059", + "xunit.runner.utility >= 2.4.1-pre.build.4059" + ] + }, + "packageFolders": { + "/home/z/Dev/coreclr-sec/.packages": {} + }, + "project": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+serialize/benchmark+serialize.csproj", + "projectName": "benchmark+serialize", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+serialize/benchmark+serialize.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark+serialize/obj-linux-x86", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netstandard1.4" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netstandard1.4": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netstandard1.4": { + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": { + "target": "Package", + "version": "[2.0.43, )" + }, + "Microsoft.NETCore.Platforms": { + "target": "Package", + "version": "[3.1.0-preview3.19551.4, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[7.0.1, )" + }, + "System.Console": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Dynamic.Runtime": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.IO": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.IO.FileSystem": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.ObjectModel": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.TypeExtensions": { + "target": "Package", + "version": "[4.4.0-preview2-25302-03, )" + }, + "System.Runtime": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Serialization.Json": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Serialization.Primitives": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Serialization.Xml": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Text.RegularExpressions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Xml.XmlDocument": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Xml.XmlSerializer": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.performance.api": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.core": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.execution": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.metrics": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.runner.console": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.runner.utility": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x86": { + "#import": [] + } + } + }, + "logs": [ + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives 4.3.0 -> runtime.unix.System.Net.Primitives 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: Microsoft.Win32.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.NameResolution 4.4.0-beta-24913-02 -> System.Security.Principal.Windows 4.4.0-beta-24913-02 -> Microsoft.Win32.Primitives (>= 4.4.0-beta-24913-02) \n benchmark+serialize -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> Microsoft.Win32.Primitives (>= 4.3.0)", + "libraryId": "Microsoft.Win32.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + } + ] +}
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark/obj-linux-x64/benchmark.csproj.nuget.cache b/tests/src/JIT/config/benchmark/obj-linux-x64/benchmark.csproj.nuget.cache new file mode 100644 index 0000000000..28145091ad --- /dev/null +++ b/tests/src/JIT/config/benchmark/obj-linux-x64/benchmark.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "Uj8iwNUvQ9PQK5R/3ttmfz31GzGeSZTjL0Zk/44mn/m+CYXw3BR+VVPe/611HahA53aUzxnZ97pu++X/FNlU3w==", + "success": true +}
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark/obj-linux-x64/benchmark.csproj.nuget.dgspec.json b/tests/src/JIT/config/benchmark/obj-linux-x64/benchmark.csproj.nuget.dgspec.json new file mode 100644 index 0000000000..6012e2b927 --- /dev/null +++ b/tests/src/JIT/config/benchmark/obj-linux-x64/benchmark.csproj.nuget.dgspec.json @@ -0,0 +1,181 @@ +{ + "format": 1, + "restore": { + "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark/benchmark.csproj": {} + }, + "projects": { + "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark/benchmark.csproj": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark/benchmark.csproj", + "projectName": "benchmark", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark/benchmark.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark/obj-linux-x64", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netstandard1.4" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netstandard1.4": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netstandard1.4": { + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": { + "target": "Package", + "version": "[2.0.43, )" + }, + "Microsoft.NETCore.Platforms": { + "target": "Package", + "version": "[3.1.0-preview3.19551.4, )" + }, + "System.Collections.NonGeneric": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Console": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Diagnostics.Process": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.IO.FileSystem": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq.Expressions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq.Parallel": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Memory": { + "target": "Package", + "version": "[4.5.2, )" + }, + "System.Numerics.Vectors": { + "target": "Package", + "version": "[4.5.0, )" + }, + "System.Reflection": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.TypeExtensions": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Runtime": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.CompilerServices.Unsafe": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Runtime.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Numerics": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Text.RegularExpressions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Tasks": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Tasks.Parallel": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Thread": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.ThreadPool": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Xml.XmlDocument": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.performance.api": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.core": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.execution": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.metrics": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.runner.console": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.runner.utility": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x64": { + "#import": [] + } + } + } + } +}
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark/obj-linux-x64/benchmark.csproj.nuget.g.props b/tests/src/JIT/config/benchmark/obj-linux-x64/benchmark.csproj.nuget.g.props new file mode 100644 index 0000000000..e448de6ae4 --- /dev/null +++ b/tests/src/JIT/config/benchmark/obj-linux-x64/benchmark.csproj.nuget.g.props @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> + <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> + <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> + <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageRoot> + <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageFolders> + <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.4.0</NuGetToolVersion> + </PropertyGroup> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> + <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)/xunit.runner.console/2.4.1-pre.build.4059/build/xunit.runner.console.props" Condition="Exists('$(NuGetPackageRoot)/xunit.runner.console/2.4.1-pre.build.4059/build/xunit.runner.console.props')" /> + <Import Project="$(NuGetPackageRoot)/microsoft.diagnostics.tracing.traceevent/2.0.43/build/Microsoft.Diagnostics.Tracing.TraceEvent.props" Condition="Exists('$(NuGetPackageRoot)/microsoft.diagnostics.tracing.traceevent/2.0.43/build/Microsoft.Diagnostics.Tracing.TraceEvent.props')" /> + <Import Project="$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.props" Condition="Exists('$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.props')" /> + </ImportGroup> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Pkgxunit_runner_console Condition=" '$(Pkgxunit_runner_console)' == '' ">/home/z/Dev/coreclr-sec/.packages/xunit.runner.console/2.4.1-pre.build.4059</Pkgxunit_runner_console> + <Pkgxunit_analyzers Condition=" '$(Pkgxunit_analyzers)' == '' ">/home/z/Dev/coreclr-sec/.packages/xunit.analyzers/0.10.0</Pkgxunit_analyzers> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark/obj-linux-x64/benchmark.csproj.nuget.g.targets b/tests/src/JIT/config/benchmark/obj-linux-x64/benchmark.csproj.nuget.g.targets new file mode 100644 index 0000000000..96b54d803c --- /dev/null +++ b/tests/src/JIT/config/benchmark/obj-linux-x64/benchmark.csproj.nuget.g.targets @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> + <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.targets" Condition="Exists('$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.targets')" /> + </ImportGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark/obj-linux-x64/project.assets.json b/tests/src/JIT/config/benchmark/obj-linux-x64/project.assets.json new file mode 100644 index 0000000000..c489a31861 --- /dev/null +++ b/tests/src/JIT/config/benchmark/obj-linux-x64/project.assets.json @@ -0,0 +1,8691 @@ +{ + "version": 3, + "targets": { + ".NETStandard,Version=v1.4": { + "CommandLineParser/2.1.1-beta": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-24027", + "System.Console": "4.0.0-rc2-24027", + "System.Diagnostics.Debug": "4.0.11-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.IO": "4.1.0-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Linq.Expressions": "4.0.11-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Reflection.Extensions": "4.0.1-rc2-24027", + "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime": "4.1.0-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027" + }, + "compile": { + "lib/netstandard1.5/CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard1.5/CommandLine.dll": {} + } + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + } + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "type": "package", + "build": { + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.2.0-beta-24913-02": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.AppContext.dll": {} + } + }, + "System.Buffers/4.4.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Buffers.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Collections.Concurrent/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Console/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Process/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.Win32.Primitives": "4.4.0-beta-24913-02", + "Microsoft.Win32.Registry": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.Thread": "4.4.0-beta-24913-02", + "System.Threading.ThreadPool": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.4/System.Diagnostics.Process.dll": {} + }, + "runtimeTargets": { + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Globalization/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Linq.Expressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Linq.Parallel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Collections.Concurrent": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Linq": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Linq.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Linq.Parallel.dll": {} + } + }, + "System.Memory/4.5.2": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Buffers": "4.4.0", + "System.Runtime.CompilerServices.Unsafe": "4.5.2" + }, + "compile": { + "lib/netstandard1.1/System.Memory.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Memory.dll": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "ref/netstandard1.0/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Numerics.Vectors.dll": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/portable45-net45+win8+wpa81/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp80+wpa81/_._": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + }, + "System.Runtime.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime.Handles/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Numerics/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} + }, + "runtime": { + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Text.Encoding/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.RegularExpressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading.Tasks.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Thread/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.ValueTuple/4.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "System.Xml.ReaderWriter/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Text.RegularExpressions": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.Tasks.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "[2.4.1-pre.build.4059]", + "xunit.core": "[2.4.1-pre.build.4059]" + } + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + } + }, + "xunit.analyzers/0.10.0": { + "type": "package" + }, + "xunit.assert/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.1/xunit.assert.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.assert.dll": {} + } + }, + "xunit.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.1-pre.build.4059]", + "xunit.extensibility.execution": "[2.4.1-pre.build.4059]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "[2.4.1-pre.build.4059]" + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + } + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "CommandLineParser": "2.1.1-beta", + "Microsoft.3rdpartytools.MarkdownLog": "0.10.0-alpha-experimental", + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.ValueTuple": "4.3.1", + "System.Xml.XmlSerializer": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015", + "xunit.performance.execution": "1.0.0-beta-build0015", + "xunit.performance.metrics": "1.0.0-beta-build0015", + "xunit.runner.utility": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + } + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + } + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit": "2.2.0-beta2-build3300", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + } + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Formatters": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + } + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "type": "package", + "build": { + "build/xunit.runner.console.props": {} + } + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll": {} + } + } + }, + ".NETStandard,Version=v1.4/linux-x64": { + "CommandLineParser/2.1.1-beta": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-24027", + "System.Console": "4.0.0-rc2-24027", + "System.Diagnostics.Debug": "4.0.11-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.IO": "4.1.0-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Linq.Expressions": "4.0.11-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Reflection.Extensions": "4.0.1-rc2-24027", + "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime": "4.1.0-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027" + }, + "compile": { + "lib/netstandard1.5/CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard1.5/CommandLine.dll": {} + } + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + } + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "type": "package", + "build": { + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.2.0-beta-24913-02": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.unix.Microsoft.Win32.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "runtime.any.System.Collections/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tools/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.Tools.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "runtime.any.System.Globalization/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.dll": {} + } + }, + "runtime.any.System.Globalization.Calendars/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "runtime.any.System.IO/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.IO.dll": {} + } + }, + "runtime.any.System.Reflection/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.dll": {} + } + }, + "runtime.any.System.Reflection.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Primitives.dll": {} + } + }, + "runtime.any.System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Resources.ResourceManager.dll": {} + } + }, + "runtime.any.System.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.dll": {} + } + }, + "runtime.any.System.Runtime.Handles/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "runtime.any.System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.InteropServices.dll": {} + } + }, + "runtime.any.System.Text.Encoding/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "runtime.any.System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "runtime.any.System.Threading.Tasks/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "runtime.any.System.Threading.Timer/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Timer.dll": {} + } + }, + "runtime.linux-x64.runtime.native.System/4.4.0-beta-24913-02": { + "type": "package", + "native": { + "runtimes/linux-x64/native/System.Native.a": {}, + "runtimes/linux-x64/native/System.Native.so": {} + } + }, + "runtime.linux-x64.runtime.native.System.IO.Compression/4.4.0-beta-24913-02": { + "type": "package", + "native": { + "runtimes/linux-x64/native/System.IO.Compression.Native.so": {} + } + }, + "runtime.linux-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.4.0-beta-24913-02": { + "type": "package", + "native": { + "runtimes/linux-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {} + } + }, + "runtime.native.System/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "runtime.linux-x64.runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.linux-x64.runtime.native.System.IO.Compression": "4.4.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "runtime.linux-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.4.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.unix.Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.unix.System.Console/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Console.dll": {} + } + }, + "runtime.unix.System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.unix.System.IO.FileSystem/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Buffers": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "runtime.unix.System.Net.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "runtime.unix.System.Net.Sockets/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.Net.NameResolution": "4.4.0-beta-24913-02", + "System.Net.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.ThreadPool": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "runtime.unix.System.Private.Uri/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.0/System.Private.Uri.dll": {} + } + }, + "runtime.unix.System.Runtime.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.AppContext.dll": {} + } + }, + "System.Buffers/4.4.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Buffers.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Collections": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Collections.Concurrent/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Console/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "runtime.unix.System.Console": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.unix.System.Diagnostics.Debug": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Process/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.Win32.Primitives": "4.4.0-beta-24913-02", + "Microsoft.Win32.Registry": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.Thread": "4.4.0-beta-24913-02", + "System.Threading.ThreadPool": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.4/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Diagnostics.Tools": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Diagnostics.Tracing": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Globalization/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Globalization": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization.Calendars": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.any.System.IO": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {} + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.unix.System.IO.FileSystem": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Linq.Expressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Linq.Parallel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Collections.Concurrent": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Linq": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Linq.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Linq.Parallel.dll": {} + } + }, + "System.Memory/4.5.2": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Buffers": "4.4.0", + "System.Runtime.CompilerServices.Unsafe": "4.5.2" + }, + "compile": { + "lib/netstandard1.1/System.Memory.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Memory.dll": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Net.NameResolution/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Net.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Security.Principal.Windows": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {} + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.unix.System.Net.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.unix.System.Net.Sockets": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "ref/netstandard1.0/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Numerics.Vectors.dll": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Private.Uri/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "runtime.unix.System.Private.Uri": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + } + }, + "System.Reflection/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Reflection": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Reflection.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/portable45-net45+win8+wpa81/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Resources.ResourceManager": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "runtime.any.System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp80+wpa81/_._": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + }, + "System.Runtime.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.unix.System.Runtime.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime.Handles/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Runtime.Handles": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "runtime.any.System.Runtime.InteropServices": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "System.Runtime.Numerics/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} + }, + "runtime": { + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.Claims/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Security.Principal": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.Win32.Primitives": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Security.Claims": "4.4.0-beta-24913-02", + "System.Security.Principal": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll": {} + } + }, + "System.Text.Encoding/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Text.Encoding": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "runtime.any.System.Text.Encoding.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.RegularExpressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading.Tasks.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Thread/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Threading.Timer": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.ValueTuple/4.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "System.Xml.ReaderWriter/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Text.RegularExpressions": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.Tasks.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "[2.4.1-pre.build.4059]", + "xunit.core": "[2.4.1-pre.build.4059]" + } + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + } + }, + "xunit.analyzers/0.10.0": { + "type": "package" + }, + "xunit.assert/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.1/xunit.assert.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.assert.dll": {} + } + }, + "xunit.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.1-pre.build.4059]", + "xunit.extensibility.execution": "[2.4.1-pre.build.4059]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "[2.4.1-pre.build.4059]" + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + } + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "CommandLineParser": "2.1.1-beta", + "Microsoft.3rdpartytools.MarkdownLog": "0.10.0-alpha-experimental", + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.ValueTuple": "4.3.1", + "System.Xml.XmlSerializer": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015", + "xunit.performance.execution": "1.0.0-beta-build0015", + "xunit.performance.metrics": "1.0.0-beta-build0015", + "xunit.runner.utility": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + } + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + } + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit": "2.2.0-beta2-build3300", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + } + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Formatters": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + } + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "type": "package", + "build": { + "build/xunit.runner.console.props": {} + } + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll": {} + } + } + } + }, + "libraries": { + "CommandLineParser/2.1.1-beta": { + "sha512": "TmWNdtqLmtqLbwr0c9l1nEjjk39GB7wevl+1rxN907kjmdUUu5s470bWJFPEckfjYTnZ216xziW5fMXP35KVXg==", + "type": "package", + "path": "commandlineparser/2.1.1-beta", + "files": [ + ".nupkg.metadata", + "commandlineparser.2.1.1-beta.nupkg.sha512", + "commandlineparser.nuspec", + "lib/net40/CommandLine.XML", + "lib/net40/CommandLine.dll", + "lib/net45/CommandLine.XML", + "lib/net45/CommandLine.dll", + "lib/netstandard1.5/CommandLine.dll", + "lib/netstandard1.5/CommandLine.xml", + "readme.md" + ] + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "sha512": "BlzmPbwd0w2OGgXHFRWYu0tsJj6f6rAglvZ5q5hi71TGl6DDCZjP7WmMvcEFZi5MGGWkZ3VoPXQ4hJMMuGJF6A==", + "type": "package", + "path": "microsoft.3rdpartytools.markdownlog/0.10.0-alpha-experimental", + "files": [ + ".nupkg.metadata", + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll", + "microsoft.3rdpartytools.markdownlog.0.10.0-alpha-experimental.nupkg.sha512", + "microsoft.3rdpartytools.markdownlog.nuspec" + ] + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "sha512": "76ol4cZYvYiaiP5Vbows1ts2WDGpi/x2QxaoAToNCoGD+s2v7znzxPygPprXNYW4HmWgN8z3FsItIZb45X8OgQ==", + "type": "package", + "path": "microsoft.diagnostics.tracing.traceevent/2.0.43", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props", + "lib/native/amd64/KernelTraceControl.dll", + "lib/native/amd64/msdia140.dll", + "lib/native/x86/KernelTraceControl.Win61.dll", + "lib/native/x86/KernelTraceControl.dll", + "lib/native/x86/msdia140.dll", + "lib/net45/Dia2Lib.dll", + "lib/net45/Microsoft.Diagnostics.FastSerialization.dll", + "lib/net45/Microsoft.Diagnostics.FastSerialization.xml", + "lib/net45/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/net45/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/net45/OSExtensions.dll", + "lib/net45/TraceReloggerLib.dll", + "lib/netstandard1.6/Dia2Lib.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.xml", + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/netstandard1.6/OSExtensions.dll", + "lib/netstandard1.6/TraceReloggerLib.dll", + "lib/netstandard2.0/Dia2Lib.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.FastSerialization.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.FastSerialization.xml", + "lib/netstandard2.0/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/netstandard2.0/OSExtensions.dll", + "lib/netstandard2.0/TraceReloggerLib.dll", + "microsoft.diagnostics.tracing.traceevent.2.0.43.nupkg.sha512", + "microsoft.diagnostics.tracing.traceevent.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "sha512": "Clr2Jue6oyBlnsVf9g5qjoi06+QDYVq+U32buU9W+mRYeIFg4LXeJei1q6P/1niiKX8WIVo7KbBnqW80jVcOvw==", + "type": "package", + "path": "microsoft.netcore.platforms/3.1.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.3.1.0-preview3.19551.4.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.2.0-beta-24913-02": { + "sha512": "Z76BzrF4Nz0qVN676Tlmk3GdRxvlFDQZF6FoBRcfIkpEd07H4JLkuqryqTlbQ30X3XXUzAtsImuI2yW9eYb55g==", + "type": "package", + "path": "microsoft.netcore.targets/1.2.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.2.0-beta-24913-02.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "sha512": "gPGph68msdAFoQB9Emn9zxxR7Igg58Nm76zgI4UAFJINBPPsrCHxfXTsJY4qhsnecahDw609V+TAL8tS32XaDg==", + "type": "package", + "path": "microsoft.win32.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/net463/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/net463/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.7/Microsoft.Win32.Primitives.dll", + "ref/uap10.1/Microsoft.Win32.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.Registry/4.4.0-beta-24913-02": { + "sha512": "XpKuSucbIipPi5XzUftawczAHaE2eeQFVNRDk951HNmYhaeAlm1qoNY5yGyepFnZUlkkttolrd/nU1ePvhIyEw==", + "type": "package", + "path": "microsoft.win32.registry/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net463/Microsoft.Win32.Registry.dll", + "microsoft.win32.registry.4.4.0-beta-24913-02.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net463/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard1.7/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard1.7/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net463/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard1.7/Microsoft.Win32.Registry.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "runtime.any.System.Collections/4.4.0-beta-24913-02": { + "sha512": "F2g9ysPsUdvdzg7PusjRSfO9lCYa8hAR2TxoT+WaJ3RqCjZUmrwzFRk6mkBVhb/jqoku1wh+DjkiVws4T/iI3A==", + "type": "package", + "path": "runtime.any.system.collections/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.dll", + "lib/netstandard1.3/System.Collections.dll", + "lib/netstandard1.7/System.Collections.dll", + "lib/uap10.1/System.Collections.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.collections.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.collections.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Collections.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Diagnostics.Tools/4.4.0-beta-24913-02": { + "sha512": "q9ex5GZda4qQWulQXw0mXxUpzYsIXA+fJsduZ4+76rFfkCTCAYnFqLg3pq1++oRe5utNE55kAWCXnPEfBjhgEw==", + "type": "package", + "path": "runtime.any.system.diagnostics.tools/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/netstandard1.3/System.Diagnostics.Tools.dll", + "lib/netstandard1.7/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tools.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.diagnostics.tools.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "sha512": "Eb5yKhR992tpieQ3k2U0Mmu7SzGodlBz7pPY4vVxrmLgO+t6bwye0Bw6+tcqO05gN3kDH47C/CKyh+ta41ULdw==", + "type": "package", + "path": "runtime.any.system.diagnostics.tracing/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "lib/netstandard1.5/System.Diagnostics.Tracing.dll", + "lib/netstandard1.7/System.Diagnostics.Tracing.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tracing.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.diagnostics.tracing.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Globalization/4.4.0-beta-24913-02": { + "sha512": "szVxxBBn8e+UDwJ+lg9C+XPSjvifllUzLuGrwhM9xPKdQUjJMrxd23yG49n0XM3q+pSIrOoHwLgWf3QDmt4PKw==", + "type": "package", + "path": "runtime.any.system.globalization/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Globalization.dll", + "lib/netstandard1.3/System.Globalization.dll", + "lib/netstandard1.7/System.Globalization.dll", + "lib/uap10.1/System.Globalization.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.globalization.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/aot/lib/uap101/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Globalization.Calendars/4.4.0-beta-24913-02": { + "sha512": "f+dLksC+5rTLnXj5ILLvAmrhvfuklzN3ba9g5O8hmbZd8zvSELF2FSw+GXbWsgqXEtjvgs4LvvH0UHkYm4nigA==", + "type": "package", + "path": "runtime.any.system.globalization.calendars/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net/_._", + "lib/netcore50/System.Globalization.Calendars.dll", + "lib/netstandard1.3/System.Globalization.Calendars.dll", + "lib/netstandard1.7/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.calendars.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.globalization.calendars.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.IO/4.4.0-beta-24913-02": { + "sha512": "jr+a+OUh/h6BIO/N+SXMDVbUln6dJIEPw/Ffaqj6aq+HmjMK1sr/aP6jw6sWRUU5hi91ppd3VMQ0xyk7Z3qBbA==", + "type": "package", + "path": "runtime.any.system.io/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.IO.dll", + "lib/netstandard1.5/System.IO.dll", + "lib/netstandard1.7/System.IO.dll", + "lib/uap10.1/System.IO.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.io.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.io.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Reflection/4.4.0-beta-24913-02": { + "sha512": "3kbe1bVviwUdBK5fN5O0646ZvpSMwMNl0uB68nf1aH9LA9EQo/xDwAbRmqbhY1wbN4ydH8PhsI2H9YNrnmRIRQ==", + "type": "package", + "path": "runtime.any.system.reflection/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.dll", + "lib/netstandard1.5/System.Reflection.dll", + "lib/netstandard1.7/System.Reflection.dll", + "lib/uap10.1/System.Reflection.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.reflection.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Reflection.Primitives/4.4.0-beta-24913-02": { + "sha512": "dEDCNyC3/P1Cl3+z5Gqhe6NZ20slv2biVjq1p8VInY9ETQTzK3QYBESPXkBlLgqG4xX+AXHIoEzWChXmj1KCYg==", + "type": "package", + "path": "runtime.any.system.reflection.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/netstandard1.3/System.Reflection.Primitives.dll", + "lib/netstandard1.7/System.Reflection.Primitives.dll", + "lib/portable45-net45+win8+wp8+wpa81/_._", + "lib/portable45-net45+win8+wpa81/_._", + "lib/uap10.1/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.reflection.primitives.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Reflection.Primitives.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "sha512": "oPqDrDykaRm+drr+dDXAveefrhawetYPTOETO84M2XeZsdgVR1YATecZun7PbbgUnSgvTR6UviiTnffEYIaIUg==", + "type": "package", + "path": "runtime.any.system.resources.resourcemanager/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/netstandard1.3/System.Resources.ResourceManager.dll", + "lib/netstandard1.7/System.Resources.ResourceManager.dll", + "lib/uap10.1/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.resources.resourcemanager.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.resources.resourcemanager.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Runtime/4.4.0-beta-24913-02": { + "sha512": "WszqTsye25+HP+UHSbqW5zW4khkQGA4fE9T/ZbPwzjA8t7+H7kc6RZEEaw3NmNBHVPCPQ2/rPs+DuVr2ely9dQ==", + "type": "package", + "path": "runtime.any.system.runtime/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.dll", + "lib/netcoreapp1.2/System.Runtime.dll", + "lib/netstandard1.5/System.Runtime.dll", + "lib/netstandard1.7/System.Runtime.dll", + "lib/uap10.1/System.Runtime.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.runtime.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Runtime.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Runtime.Handles/4.4.0-beta-24913-02": { + "sha512": "QVZWjaAvR/fAnWQ84CIfOL1bP3sROghLXJV2TVOrCSy3nGbKe8R0hJMMSiYRZ1cJSPFkXCR4ov9Giq2UWhap2w==", + "type": "package", + "path": "runtime.any.system.runtime.handles/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netstandard1.3/System.Runtime.Handles.dll", + "lib/netstandard1.7/System.Runtime.Handles.dll", + "lib/uap10.1/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.handles.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.runtime.handles.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "sha512": "fQhiPiPdc2MvT1Ly8qNhXXRhtOn80nxI7zN/Rzqa+kUBETdJzivUhs2KfaMA6CeArM0HlCZr9nkb5jPe3QSy0A==", + "type": "package", + "path": "runtime.any.system.runtime.interopservices/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "lib/netstandard1.5/System.Runtime.InteropServices.dll", + "lib/netstandard1.6/System.Runtime.InteropServices.dll", + "lib/netstandard1.7/System.Runtime.InteropServices.dll", + "lib/uap10.1/System.Runtime.InteropServices.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.interopservices.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.runtime.interopservices.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Runtime.InteropServices.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Text.Encoding/4.4.0-beta-24913-02": { + "sha512": "Xeqwi4XTKzoU787kjWuFmad+InOs+3GFQt7jYgTvZescP/O1QPOpXo2OBdohyM+G7krDarJufdl4S7fNvhWacQ==", + "type": "package", + "path": "runtime.any.system.text.encoding/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/netstandard1.3/System.Text.Encoding.dll", + "lib/netstandard1.7/System.Text.Encoding.dll", + "lib/uap10.1/System.Text.Encoding.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.text.encoding.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "sha512": "x32Af805w4cweMs7FNZCXHe/k2twQFE9l0/siz7P86e4PhHz6wc4BJ6I8AR3kxqBwtgSF7QPnLhN1yNxem8/MA==", + "type": "package", + "path": "runtime.any.system.text.encoding.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll", + "lib/netstandard1.7/System.Text.Encoding.Extensions.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.text.encoding.extensions.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Threading.Tasks/4.4.0-beta-24913-02": { + "sha512": "WfTJsPBqnWM3ba8Ua9xehHQbJW+RwcAu9LCWXuMhQAmsxssz15uycggqRdsS6hb2dRkZS9Jz3dtu3ns6Q7M2qw==", + "type": "package", + "path": "runtime.any.system.threading.tasks/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/netstandard1.3/System.Threading.Tasks.dll", + "lib/netstandard1.7/System.Threading.Tasks.dll", + "lib/uap10.1/System.Threading.Tasks.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.tasks.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.threading.tasks.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Threading.Tasks.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Threading.Timer/4.4.0-beta-24913-02": { + "sha512": "+IDpQUBdCovPqrD9tV2OlluOc+CNsDSs8GJ5WVa/ZBXCeVGX2qwZKO8a3nwnc81SpxO1zGlMo/Y2m6K0pDPnKQ==", + "type": "package", + "path": "runtime.any.system.threading.timer/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/netstandard1.3/System.Threading.Timer.dll", + "lib/netstandard1.7/System.Threading.Timer.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.timer.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.threading.timer.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.linux-x64.runtime.native.System/4.4.0-beta-24913-02": { + "sha512": "sssCMcBrty+rIkiBdaVoFN1c0llOnwW5ZFvj7PYomc0SZtsJXIZWruFeYCRmkT+qrcdjIJRyEPs0gQFwVkherg==", + "type": "package", + "path": "runtime.linux-x64.runtime.native.system/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.linux-x64.runtime.native.system.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.linux-x64.runtime.native.system.nuspec", + "runtimes/linux-x64/native/System.Native.a", + "runtimes/linux-x64/native/System.Native.so", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.linux-x64.runtime.native.System.IO.Compression/4.4.0-beta-24913-02": { + "sha512": "c56L47xwZfrqMp47oZ0Z6Nx+prd+maS1V8kRQEQnZfkis9T/aF+wM9+bXEDgS2/gl38BxZHD40jTOWeoHVVHSA==", + "type": "package", + "path": "runtime.linux-x64.runtime.native.system.io.compression/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.linux-x64.runtime.native.system.io.compression.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.linux-x64.runtime.native.system.io.compression.nuspec", + "runtimes/linux-x64/native/System.IO.Compression.Native.so", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.linux-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.4.0-beta-24913-02": { + "sha512": "HoSRBeHtdskdLmj0pVuNu49Ud0Zk489TDO65lH7KDygXic9yxEhug2peeZmpiZYjieZpFrisSq+7kk9YDNDLxQ==", + "type": "package", + "path": "runtime.linux-x64.runtime.native.system.security.cryptography.openssl/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.linux-x64.runtime.native.system.security.cryptography.openssl.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.linux-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/linux-x64/native/System.Security.Cryptography.Native.OpenSsl.so", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.native.System/4.4.0-beta-24913-02": { + "sha512": "DtEYKhWPpIDQlWxyIWBiUK7Q3H2kPxVNLuOccIJY17tS1I4b0ya5FVc6WVj47Zg3SUvFuJhZzM7EqZsl5c4RWA==", + "type": "package", + "path": "runtime.native.system/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.native.system.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.4.0-beta-24913-02": { + "sha512": "J9TS90larMk0sgXUZQceCtbLzuYm3wHud/qBTLGYC5Yd6ntuZCifJxQd7QhM5jykR2u06aPCkKiv9bodz16tyw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.unix.Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "sha512": "ErIf7An6edPAgcSJcLZAYH8KEr2Aqi2H47K860JKyXLnwK0G047ksS8VtVg0v9z2cs3p+YTLTDD6dFLbg3RLpg==", + "type": "package", + "path": "runtime.unix.microsoft.win32.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.microsoft.win32.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.microsoft.win32.primitives.nuspec", + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Primitives.dll", + "runtimes/unix/lib/netstandard1.7/Microsoft.Win32.Primitives.dll", + "runtimes/unix/lib/uap10.1/Microsoft.Win32.Primitives.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Console/4.4.0-beta-24913-02": { + "sha512": "bVyMROOfEqc/7fRDnearZ6Jpeq/Psc+EFe/srfRQeVuFLMXT6cxaCvUk+4gHJisdSZQCleIdlIy4VoS/Tdvs7w==", + "type": "package", + "path": "runtime.unix.system.console/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.console.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.console.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Console.dll", + "runtimes/unix/lib/netstandard1.7/System.Console.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "sha512": "M95VkuwoXStqkCny6RJK1pECnFevEqkrvlDjyouEUXJneIB4qSH0LHH9rfrmhQosE+Z5m3KQIh1wCGneZ932Zg==", + "type": "package", + "path": "runtime.unix.system.diagnostics.debug/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.diagnostics.debug.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.diagnostics.debug.nuspec", + "runtimes/unix-corert/lib/netcoreapp1.2/System.Diagnostics.Debug.dll", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.Debug.dll", + "runtimes/unix/lib/netstandard1.7/System.Diagnostics.Debug.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.IO.FileSystem/4.4.0-beta-24913-02": { + "sha512": "4E0WH3D3D7uAHImAj3zQBRuYHSfUrCvdyv75+TuvTLw6RKPtoBR8Jq0mVAXIqshvrUfHCyBzv+cn5oY2BrBSRA==", + "type": "package", + "path": "runtime.unix.system.io.filesystem/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.io.filesystem.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.io.filesystem.nuspec", + "runtimes/unix/lib/netstandard1.3/System.IO.FileSystem.dll", + "runtimes/unix/lib/netstandard1.7/System.IO.FileSystem.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Net.Primitives/4.4.0-beta-24913-02": { + "sha512": "DBOmYuPH4khZftILHrquXZTda5PiTaBsWejwwtYtZsvUPZtF0nYmsjbCrOycbGWzS4gFZoU6vqD4dMbku4/ZEg==", + "type": "package", + "path": "runtime.unix.system.net.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.net.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.net.primitives.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Net.Primitives.dll", + "runtimes/unix/lib/netstandard1.7/System.Net.Primitives.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Net.Sockets/4.4.0-beta-24913-02": { + "sha512": "vl7Lz6dnOa+xi/WUUsZ1G3TFhroPkPrWKWVSUGg9E6mGcK5m2VqCbqcWwneYehgallbBMLOEmL7nsq+1XXCGWQ==", + "type": "package", + "path": "runtime.unix.system.net.sockets/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.net.sockets.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.net.sockets.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Net.Sockets.dll", + "runtimes/unix/lib/netstandard1.7/System.Net.Sockets.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Private.Uri/4.4.0-beta-24913-02": { + "sha512": "CM/S/SEyzccTOXKa+HAnUpAKlqspZRgfYbEQWKxTpm3iljXcj5aWuoaZFAav3Rts34FS6A7m+zCUgJeRKFGzPQ==", + "type": "package", + "path": "runtime.unix.system.private.uri/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.private.uri.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.private.uri.nuspec", + "runtimes/unix-corert/lib/netcoreapp1.2/System.Private.Uri.dll", + "runtimes/unix/lib/netstandard1.0/System.Private.Uri.dll", + "runtimes/unix/lib/uap10.1/System.Private.Uri.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Runtime.Extensions/4.4.0-beta-24913-02": { + "sha512": "SbmnGceBoHRqOLVdRdgdOd9UKizKVmwlBpbww67Hju5rUbMdOv4AdkoHrFm+Ee7kO0xHumYHlTuenmXmuFRW4Q==", + "type": "package", + "path": "runtime.unix.system.runtime.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.runtime.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.runtime.extensions.nuspec", + "runtimes/unix-corert/lib/netcoreapp1.2/System.Runtime.Extensions.dll", + "runtimes/unix/lib/netstandard1.5/System.Runtime.Extensions.dll", + "runtimes/unix/lib/netstandard1.7/System.Runtime.Extensions.dll", + "runtimes/unix/lib/uap10.1/System.Runtime.Extensions.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.4.0": { + "sha512": "AwarXzzoDwX6BgrhjoJsk6tUezZEozOT5Y9QKF94Gl4JK91I4PIIBkBco9068Y9/Dra8Dkbie99kXB8+1BaYKw==", + "type": "package", + "path": "system.buffers/4.4.0", + "files": [ + ".nupkg.metadata", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Buffers.dll", + "lib/netstandard1.1/System.Buffers.xml", + "lib/netstandard2.0/System.Buffers.dll", + "lib/netstandard2.0/System.Buffers.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.xml", + "ref/netstandard2.0/System.Buffers.dll", + "ref/netstandard2.0/System.Buffers.xml", + "system.buffers.4.4.0.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.4.0-beta-24913-02": { + "sha512": "Y9+bO37c8uVvXqkNGm90t2geVYeaEkWjMTgOkq6CkOOAtF5BpqKTvwnelXWP2pmL5fSqAMvPhsN/UXkTTxgMRA==", + "type": "package", + "path": "system.collections/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Collections.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Collections.dll", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netcoreapp1.1/System.Collections.dll", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/netstandard1.7/System.Collections.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Collections.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.4.0-beta-24913-02.nupkg.sha512", + "system.collections.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections.Concurrent/4.4.0-beta-24913-02": { + "sha512": "eky+QV4xCtubhbJk62uICQ4iygDnhoU7ojHRZbog5bqhjGWHtzvLdLu9nBu7YPKh7GDzk2ZHfL9uNECo8kKcdA==", + "type": "package", + "path": "system.collections.concurrent/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/netstandard1.7/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netcoreapp1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.4.0-beta-24913-02.nupkg.sha512", + "system.collections.concurrent.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections.NonGeneric/4.4.0-beta-24913-02": { + "sha512": "VEhSZSDYNv1aJieXt4O4grrHspFZAw+4XT7PsJwnitqYjYDNT8tiBj2ALtEt7U/Jx2tf86wHDqdnKYqlvLLqog==", + "type": "package", + "path": "system.collections.nongeneric/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/net463/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", + "lib/netstandard1.7/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/net463/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/netstandard1.7/System.Collections.NonGeneric.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.4.0-beta-24913-02.nupkg.sha512", + "system.collections.nongeneric.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Console/4.4.0-beta-24913-02": { + "sha512": "AiRso5v4Rbn6JgfRevPTZ0q+bpkfuAGQtkk4Aiuu+np3c4mEdHrW/ippOuSmIQJmvyHVEg9TQxpjrjcZUhLvkw==", + "type": "package", + "path": "system.console/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/net463/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/net463/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/netstandard1.7/System.Console.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.4.0-beta-24913-02.nupkg.sha512", + "system.console.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "sha512": "1JrMoPGopozBemABZVZvaXpPjXPqboGsxyZE+r8iuaJuU6nCVpxIvZf9LTkDZdXvdzA6UN8gNyo5JVkTpDRrtQ==", + "type": "package", + "path": "system.diagnostics.debug/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Diagnostics.Debug.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.7/System.Diagnostics.Debug.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net463/System.Diagnostics.Debug.dll", + "system.diagnostics.debug.4.4.0-beta-24913-02.nupkg.sha512", + "system.diagnostics.debug.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec" + ] + }, + "System.Diagnostics.Process/4.4.0-beta-24913-02": { + "sha512": "Wi29/vAxe1W8J8IVa9Snd5RLWFJkvRUsNW1l3n6N/7vb0thD9GHtW3bdZVk+IpudHUrvXaZc7PmVFAGu0CbMTA==", + "type": "package", + "path": "system.diagnostics.process/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.Process.dll", + "lib/net461/System.Diagnostics.Process.dll", + "lib/net463/System.Diagnostics.Process.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.Process.dll", + "ref/net461/System.Diagnostics.Process.dll", + "ref/net463/System.Diagnostics.Process.dll", + "ref/netstandard1.3/System.Diagnostics.Process.dll", + "ref/netstandard1.3/System.Diagnostics.Process.xml", + "ref/netstandard1.3/de/System.Diagnostics.Process.xml", + "ref/netstandard1.3/es/System.Diagnostics.Process.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Process.xml", + "ref/netstandard1.3/it/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Process.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Process.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Process.xml", + "ref/netstandard1.4/System.Diagnostics.Process.dll", + "ref/netstandard1.4/System.Diagnostics.Process.xml", + "ref/netstandard1.4/de/System.Diagnostics.Process.xml", + "ref/netstandard1.4/es/System.Diagnostics.Process.xml", + "ref/netstandard1.4/fr/System.Diagnostics.Process.xml", + "ref/netstandard1.4/it/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ja/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ko/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ru/System.Diagnostics.Process.xml", + "ref/netstandard1.4/zh-hans/System.Diagnostics.Process.xml", + "ref/netstandard1.4/zh-hant/System.Diagnostics.Process.xml", + "ref/netstandard1.7/System.Diagnostics.Process.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/linux/lib/netstandard1.7/System.Diagnostics.Process.dll", + "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/osx/lib/netstandard1.7/System.Diagnostics.Process.dll", + "runtimes/win/lib/net46/System.Diagnostics.Process.dll", + "runtimes/win/lib/net461/System.Diagnostics.Process.dll", + "runtimes/win/lib/net463/System.Diagnostics.Process.dll", + "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/win/lib/netstandard1.7/System.Diagnostics.Process.dll", + "runtimes/win7/lib/netcore50/_._", + "system.diagnostics.process.4.4.0-beta-24913-02.nupkg.sha512", + "system.diagnostics.process.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "sha512": "dupkxZ5nLUDX8e9OqQ1XqPJM54UZo3XGRiFeqdF/a59R90KbVSmmhqT4RPwa92fi4Unr401DQXMDBEVLLmJo9w==", + "type": "package", + "path": "system.diagnostics.tracing/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.7/System.Diagnostics.Tracing.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.4.0-beta-24913-02.nupkg.sha512", + "system.diagnostics.tracing.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Globalization/4.4.0-beta-24913-02": { + "sha512": "KxBYuqGY1P0LBAn1uXLyiYf3qXiNlhDCfCtLBemYA7mouGqqs+YPgYo2WuI5pqGU6VjAWiQvAT6PeNhofDvTHw==", + "type": "package", + "path": "system.globalization/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Globalization.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Globalization.dll", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/netstandard1.7/System.Globalization.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Globalization.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.4.0-beta-24913-02.nupkg.sha512", + "system.globalization.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.IO/4.4.0-beta-24913-02": { + "sha512": "BEqLHSTjhsWFdxz0q5OYlFc2Ic7NcWbKrn13IulLnRpF9yJClv3W2CxSHPq2IB48qKvODoYO9wEKax74+JK8eg==", + "type": "package", + "path": "system.io/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netcoreapp1.1/System.IO.dll", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/netstandard1.7/System.IO.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.IO.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.4.0-beta-24913-02.nupkg.sha512", + "system.io.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.4.0-beta-24913-02": { + "sha512": "DvhfpfWgOwoxyjPNYKhMV0xZuqGdznnaC7aIMzBc2oh+u19jZrloGl11P2DnFKJLfsth5DPLvTMxXmvKLeuykw==", + "type": "package", + "path": "system.io.filesystem/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/net463/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/net463/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/netstandard1.7/System.IO.FileSystem.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.4.0-beta-24913-02.nupkg.sha512", + "system.io.filesystem.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.FileSystem.Primitives/4.4.0-beta-24913-02": { + "sha512": "wRiqs3kiUczfE2pBubg2o3u06yQeUeqZruZG8ckw5/QJHRMCcnSaf//dyhJs+Qnq7uOYVoI2p8rEnYjm6w9omw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/net463/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.7/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/net463/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.7/System.IO.FileSystem.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "system.io.filesystem.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq/4.4.0-beta-24913-02": { + "sha512": "bjnCiY6U3f9k7fH/R3IQohZniRlLB3MdQ59n0nH8oa26YCFZO+OgjdVbSj67RgVpxupYLzXCZ80li32HcL4qdQ==", + "type": "package", + "path": "system.linq/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netcoreapp1.1/System.Linq.dll", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.4.0-beta-24913-02.nupkg.sha512", + "system.linq.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq.Expressions/4.4.0-beta-24913-02": { + "sha512": "FGRSqzfppwrXJSO+91Bi3BEOV1xejk/VHOL3bZRJYCshZ67t8s5OeOk8ywh96Xi12+RFIsXkIzJYBBYC3xV/ow==", + "type": "package", + "path": "system.linq.expressions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/netstandard1.7/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.7/System.Linq.Expressions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.4.0-beta-24913-02.nupkg.sha512", + "system.linq.expressions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq.Parallel/4.4.0-beta-24913-02": { + "sha512": "2Ho/HOJ2OXQpTahBxA3LW9iP3gb9dK4KdOfID4mwB7uPQZcHZ1UxlZNwgf2TuG26F9p9CWyEKupP+Heh+BpubA==", + "type": "package", + "path": "system.linq.parallel/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Linq.Parallel.dll", + "lib/netstandard1.3/System.Linq.Parallel.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Linq.Parallel.dll", + "ref/netcore50/System.Linq.Parallel.xml", + "ref/netcore50/de/System.Linq.Parallel.xml", + "ref/netcore50/es/System.Linq.Parallel.xml", + "ref/netcore50/fr/System.Linq.Parallel.xml", + "ref/netcore50/it/System.Linq.Parallel.xml", + "ref/netcore50/ja/System.Linq.Parallel.xml", + "ref/netcore50/ko/System.Linq.Parallel.xml", + "ref/netcore50/ru/System.Linq.Parallel.xml", + "ref/netcore50/zh-hans/System.Linq.Parallel.xml", + "ref/netcore50/zh-hant/System.Linq.Parallel.xml", + "ref/netstandard1.1/System.Linq.Parallel.dll", + "ref/netstandard1.1/System.Linq.Parallel.xml", + "ref/netstandard1.1/de/System.Linq.Parallel.xml", + "ref/netstandard1.1/es/System.Linq.Parallel.xml", + "ref/netstandard1.1/fr/System.Linq.Parallel.xml", + "ref/netstandard1.1/it/System.Linq.Parallel.xml", + "ref/netstandard1.1/ja/System.Linq.Parallel.xml", + "ref/netstandard1.1/ko/System.Linq.Parallel.xml", + "ref/netstandard1.1/ru/System.Linq.Parallel.xml", + "ref/netstandard1.1/zh-hans/System.Linq.Parallel.xml", + "ref/netstandard1.1/zh-hant/System.Linq.Parallel.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.parallel.4.4.0-beta-24913-02.nupkg.sha512", + "system.linq.parallel.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Memory/4.5.2": { + "sha512": "fvq1GNmUFwbKv+aLVYYdgu/+gc8Nu9oFujOxIjPrsf+meis9JBzTPDL6aP/eeGOz9yPj6rRLUbOjKMpsMEWpNg==", + "type": "package", + "path": "system.memory/4.5.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.2.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.NameResolution/4.4.0-beta-24913-02": { + "sha512": "xTSaAEadOMDmmGLv60VMP1GtqMq++l23ld96Rg3X/Sphde1FFLB9nUetcoWx7VwfC5sJ1m70YprLKXDS4PNG8A==", + "type": "package", + "path": "system.net.nameresolution/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.NameResolution.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.xml", + "ref/netstandard1.3/de/System.Net.NameResolution.xml", + "ref/netstandard1.3/es/System.Net.NameResolution.xml", + "ref/netstandard1.3/fr/System.Net.NameResolution.xml", + "ref/netstandard1.3/it/System.Net.NameResolution.xml", + "ref/netstandard1.3/ja/System.Net.NameResolution.xml", + "ref/netstandard1.3/ko/System.Net.NameResolution.xml", + "ref/netstandard1.3/ru/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", + "runtimes/win/lib/net46/System.Net.NameResolution.dll", + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll", + "system.net.nameresolution.4.4.0-beta-24913-02.nupkg.sha512", + "system.net.nameresolution.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.Numerics.Vectors/4.5.0": { + "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "type": "package", + "path": "system.numerics.vectors/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/netstandard2.0/System.Numerics.Vectors.dll", + "lib/netstandard2.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.Numerics.Vectors.dll", + "ref/net45/System.Numerics.Vectors.xml", + "ref/net46/System.Numerics.Vectors.dll", + "ref/net46/System.Numerics.Vectors.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", + "ref/netstandard2.0/System.Numerics.Vectors.dll", + "ref/netstandard2.0/System.Numerics.Vectors.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.numerics.vectors.4.5.0.nupkg.sha512", + "system.numerics.vectors.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ObjectModel/4.3.0": { + "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "type": "package", + "path": "system.objectmodel/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Private.Uri/4.4.0-beta-24913-02": { + "sha512": "P5WV/+fFObWRGhcbiUIx+23/hz4k/x6xFoePjam1t6xvKw+E1E4KkM8O2sRkZQ0h8i7ATr04oCi5jNnzg2+idg==", + "type": "package", + "path": "system.private.uri/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "system.private.uri.4.4.0-beta-24913-02.nupkg.sha512", + "system.private.uri.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection/4.4.0-beta-24913-02": { + "sha512": "BYjVZSHD4JDmhn5LueNSF16qU8WA6V2YAakX+q+U9lAlj/B+gV+l9vO2RkJjzexvDcZLluFzIUdpWDGtOj95wA==", + "type": "package", + "path": "system.reflection/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/netstandard1.7/System.Reflection.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Reflection.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.4.0-beta-24913-02": { + "sha512": "6f9M3xv5HkaZEbZLsjRSEHekr1bbEFUbtpr/8NHGJ3cwjdUmfirIwT3i69VxPy0xx9nj8OLbfGitQcPOUsK/sA==", + "type": "package", + "path": "system.reflection.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Reflection.Extensions.dll", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/netstandard1.3/System.Reflection.Extensions.dll", + "lib/netstandard1.7/System.Reflection.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.1/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.7/System.Reflection.Extensions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Reflection.Extensions.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll", + "runtimes/aot/lib/uap10.1/System.Reflection.Extensions.dll", + "system.reflection.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Primitives/4.4.0-beta-24913-02": { + "sha512": "qR0QeMteCI5xqH473N019aiA3kSrUYIsxHb5yD8EMeEY9ZQpDe7eETxaxm9mDtZsk5ykm3fboDda8cAsHqM5+w==", + "type": "package", + "path": "system.reflection.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Reflection.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/portable45-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.7/System.Reflection.Primitives.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/portable45-net45+win8+wpa81/_._", + "ref/uap10.1/System.Reflection.Primitives.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.TypeExtensions/4.7.0-preview3.19551.4": { + "sha512": "PYxuzuBiOLVfZLE40zmzvpJx4NBNMAFBLIKTq5FSRtHjpBK9JzmtuWylHVv9L2sp62Aux4bA7w/Ma/Q+4u8+pA==", + "type": "package", + "path": "system.reflection.typeextensions/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net461/System.Reflection.TypeExtensions.dll", + "lib/net461/System.Reflection.TypeExtensions.xml", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netcoreapp1.0/System.Reflection.TypeExtensions.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.3/System.Reflection.TypeExtensions.xml", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.xml", + "lib/netstandard2.0/System.Reflection.TypeExtensions.dll", + "lib/netstandard2.0/System.Reflection.TypeExtensions.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net461/System.Reflection.TypeExtensions.dll", + "ref/net461/System.Reflection.TypeExtensions.xml", + "ref/net472/System.Reflection.TypeExtensions.dll", + "ref/net472/System.Reflection.TypeExtensions.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/System.Reflection.TypeExtensions.dll", + "ref/netstandard2.0/System.Reflection.TypeExtensions.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "runtimes/aot/lib/uap10.0.16299/_._", + "system.reflection.typeextensions.4.7.0-preview3.19551.4.nupkg.sha512", + "system.reflection.typeextensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "sha512": "zbswj86i6yoQyMybsHm16OPp5/uoWqTJX0X7QuguoBpOdBc7XJ9H68dvuRb4VUKh/WtbvUiftn2PnLCDC5gZxA==", + "type": "package", + "path": "system.resources.resourcemanager/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Resources.ResourceManager.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.7/System.Resources.ResourceManager.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.4.0-beta-24913-02.nupkg.sha512", + "system.resources.resourcemanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime/4.4.0-beta-24913-02": { + "sha512": "OjwRltLPQUMt7uJ4vQklRo1fFK9WsL10GMyFKB+SdZknqXzxpM3zThIjMFtiQJtf8hmXTQU8H0DkMWinTHroJw==", + "type": "package", + "path": "system.runtime/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netcoreapp1.1/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/netstandard1.7/System.Runtime.dll", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/uap10.1/System.Runtime.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview3.19551.4": { + "sha512": "BU7m1FwolaGTh/+UP0SueOqXBNpcwROK7633HRNoZ9A2kBhdoi7nsKyjHLfae3GIxchV9Cxt9nDaeU2EdhPzxQ==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.4.7.0-preview3.19551.4.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Extensions/4.4.0-beta-24913-02": { + "sha512": "v1XLBAT4zvJdo4pP6wXvasll7+0v/B0X+TNueBfqsprfP0xGPOm8TOUB2ln/djZrnz/AWSOLlevjIFs6PhJD+Q==", + "type": "package", + "path": "system.runtime.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netcoreapp1.1/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.7/System.Runtime.Extensions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Runtime.Extensions.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/uap10.1/System.Runtime.Extensions.dll", + "runtimes/win/lib/net461/System.Runtime.Extensions.dll", + "system.runtime.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Handles/4.4.0-beta-24913-02": { + "sha512": "5Z5jTG+Lx8ttF1ukhKhF5cMyNbfZqsYhp8HFg6sHZojo0vPfeXYce0eRHiWkPxcZ1yHVz6V/l7iBPJIDR4nC8Q==", + "type": "package", + "path": "system.runtime.handles/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/net463/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/net463/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/netstandard1.7/System.Runtime.Handles.dll", + "ref/uap10.1/System.Runtime.Handles.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.handles.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "sha512": "T7Tv7MQGriQdoTjyztjsICDhQrsoIE4DH5yu+UlUnH5Ze+h3SRTJSdnOsXVnsA5bjq7jDTm7aFJM47KYBYi1vA==", + "type": "package", + "path": "system.runtime.interopservices/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.7/System.Runtime.InteropServices.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/uap10.1/System.Runtime.InteropServices.dll", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.interopservices.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.4.0-beta-24913-02": { + "sha512": "fdLF4k7ByLmJsRvifhthFQ+y4Fb+SmOeKlcbagzBKhKORu+JFnj9P3eGHIIcTXlzIrqPNhCvqoaGCNJBwPAWXA==", + "type": "package", + "path": "system.runtime.numerics/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Runtime.Numerics.dll", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/netstandard1.7/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.7/System.Runtime.Numerics.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.numerics.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==", + "type": "package", + "path": "system.runtime.serialization.formatters/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Runtime.Serialization.Formatters.dll", + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Runtime.Serialization.Formatters.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.serialization.formatters.4.3.0.nupkg.sha512", + "system.runtime.serialization.formatters.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Primitives.dll", + "lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "system.runtime.serialization.primitives.4.3.0.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec" + ] + }, + "System.Security.Claims/4.4.0-beta-24913-02": { + "sha512": "/PPqq7MEKJvP8kE/ud4uzqvi4gYQICRMwQV2+hxJkd2A9vKyGvDmpq2HbbMPO6U2lMTwdMUmdUm7HgEoCcy6kw==", + "type": "package", + "path": "system.security.claims/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/net463/System.Security.Claims.dll", + "lib/netstandard1.3/System.Security.Claims.dll", + "lib/netstandard1.7/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/net463/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.xml", + "ref/netstandard1.3/de/System.Security.Claims.xml", + "ref/netstandard1.3/es/System.Security.Claims.xml", + "ref/netstandard1.3/fr/System.Security.Claims.xml", + "ref/netstandard1.3/it/System.Security.Claims.xml", + "ref/netstandard1.3/ja/System.Security.Claims.xml", + "ref/netstandard1.3/ko/System.Security.Claims.xml", + "ref/netstandard1.3/ru/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hans/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hant/System.Security.Claims.xml", + "ref/netstandard1.7/System.Security.Claims.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.claims.4.4.0-beta-24913-02.nupkg.sha512", + "system.security.claims.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Principal/4.4.0-beta-24913-02": { + "sha512": "OSfvB2svUkTf3TgH2NRsZT+EOqSt57SgjQ7fahG2ahH/JFHLxfNdCnYV8l1FFjAJzHcCS6ExQvhq0wIAoa/wmA==", + "type": "package", + "path": "system.security.principal/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Security.Principal.dll", + "lib/netcore50/System.Security.Principal.dll", + "lib/netstandard1.0/System.Security.Principal.dll", + "lib/netstandard1.7/System.Security.Principal.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.1/System.Security.Principal.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/netcore50/de/System.Security.Principal.xml", + "ref/netcore50/es/System.Security.Principal.xml", + "ref/netcore50/fr/System.Security.Principal.xml", + "ref/netcore50/it/System.Security.Principal.xml", + "ref/netcore50/ja/System.Security.Principal.xml", + "ref/netcore50/ko/System.Security.Principal.xml", + "ref/netcore50/ru/System.Security.Principal.xml", + "ref/netcore50/zh-hans/System.Security.Principal.xml", + "ref/netcore50/zh-hant/System.Security.Principal.xml", + "ref/netstandard1.0/System.Security.Principal.dll", + "ref/netstandard1.0/System.Security.Principal.xml", + "ref/netstandard1.0/de/System.Security.Principal.xml", + "ref/netstandard1.0/es/System.Security.Principal.xml", + "ref/netstandard1.0/fr/System.Security.Principal.xml", + "ref/netstandard1.0/it/System.Security.Principal.xml", + "ref/netstandard1.0/ja/System.Security.Principal.xml", + "ref/netstandard1.0/ko/System.Security.Principal.xml", + "ref/netstandard1.0/ru/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hans/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hant/System.Security.Principal.xml", + "ref/netstandard1.7/System.Security.Principal.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Security.Principal.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/uap10.1/System.Security.Principal.dll", + "system.security.principal.4.4.0-beta-24913-02.nupkg.sha512", + "system.security.principal.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.4.0-beta-24913-02": { + "sha512": "ZHYzVfmY8hv2VGl8zLEI5tG3m5tZgoToMNq84ZZR3zUpFjKMaKVviIN+1r+5C+f6Xyw7T45sGMmdMya69P+bnA==", + "type": "package", + "path": "system.security.principal.windows/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net463/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net463/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard1.7/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netstandard1.7/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net463/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.7/System.Security.Principal.Windows.dll", + "system.security.principal.windows.4.4.0-beta-24913-02.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.4.0-beta-24913-02": { + "sha512": "+IM39s4C1QMr/qKpiVlLOr+FIfyXVTe7tpIx39hoTcAvZY+sXhMMS5ErJeJdaSMZgL5ZyGzcuxkfeAYDKloW6w==", + "type": "package", + "path": "system.text.encoding/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.Encoding.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.7/System.Text.Encoding.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Text.Encoding.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.4.0-beta-24913-02.nupkg.sha512", + "system.text.encoding.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "sha512": "jK3sE8t8Ngi1hSKmPI1RGXaqdtCT6dPPvfrFWDn8u45r6Zh4RJk4962v6AU5saxkssCfTiVhqDK+Drageb5mJA==", + "type": "package", + "path": "system.text.encoding.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.Encoding.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.7/System.Text.Encoding.Extensions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.text.encoding.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.RegularExpressions/4.4.0-beta-24913-02": { + "sha512": "eb/QjBezP1/UbivTA+xpNakEST/xnm1/yc563KRUINfsZ+Owz3By8ofAV2S94usp087bWls5v1sX4rZAjuTuxg==", + "type": "package", + "path": "system.text.regularexpressions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/netstandard1.7/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.7/System.Text.RegularExpressions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.4.0-beta-24913-02.nupkg.sha512", + "system.text.regularexpressions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading/4.4.0-beta-24913-02": { + "sha512": "IDvvo0zC8/kGPUnj2l79COn+vizKPxDoJ9BcLMo5R8H7CImr4t98kZyChhY1lu2PZfxo/t+4QrtXDgZflWnPkw==", + "type": "package", + "path": "system.threading/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Threading.dll", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/netstandard1.7/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Threading.dll", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/netstandard1.7/System.Threading.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks/4.4.0-beta-24913-02": { + "sha512": "tphb/t923mWZs75EwmJg6CEB5fgC2YRItN37XvPjANv9FmCxo9THV+eD8/Fdw2SxeyZ9nJtgupbk076ZAvTV1A==", + "type": "package", + "path": "system.threading.tasks/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Threading.Tasks.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.7/System.Threading.Tasks.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Threading.Tasks.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.tasks.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks.Extensions/4.4.0-beta-24913-02": { + "sha512": "NWU1a7pXP2AySgi4ZAN0qjkzXIYRoPTg6hdMEZSxAIf7mMupJTlTB0tmJZ8QarD/33ClxoSOwN6hjCSukJ9pmw==", + "type": "package", + "path": "system.threading.tasks.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "system.threading.tasks.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks.Parallel/4.4.0-beta-24913-02": { + "sha512": "osOWN3xRHMIqXMB7YNYiMLxsl9orwUrxA+WB0ujcYXjoORyrel7L1iCz5mLdZT0o4AMH0Ps6GSIM0pYtm+PVOQ==", + "type": "package", + "path": "system.threading.tasks.parallel/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.Parallel.dll", + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.Parallel.dll", + "ref/netcore50/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/de/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/es/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/it/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll", + "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.parallel.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.tasks.parallel.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Thread/4.4.0-beta-24913-02": { + "sha512": "kO2WQOh0cJd6Yoc9JJAeBWkuKHeI/Tgg0nPyPUIihsGDTzc3G0uGeEjF4MjBi/EKly9objpgAP9sLrGIgUt3fw==", + "type": "package", + "path": "system.threading.thread/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.Thread.dll", + "lib/net461/System.Threading.Thread.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.Thread.dll", + "lib/netstandard1.7/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.Thread.dll", + "ref/net461/System.Threading.Thread.dll", + "ref/netstandard1.3/System.Threading.Thread.dll", + "ref/netstandard1.3/System.Threading.Thread.xml", + "ref/netstandard1.3/de/System.Threading.Thread.xml", + "ref/netstandard1.3/es/System.Threading.Thread.xml", + "ref/netstandard1.3/fr/System.Threading.Thread.xml", + "ref/netstandard1.3/it/System.Threading.Thread.xml", + "ref/netstandard1.3/ja/System.Threading.Thread.xml", + "ref/netstandard1.3/ko/System.Threading.Thread.xml", + "ref/netstandard1.3/ru/System.Threading.Thread.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml", + "ref/netstandard1.7/System.Threading.Thread.dll", + "ref/uap10.1/System.Threading.Thread.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/uap10.1/System.Threading.Thread.dll", + "runtimes/unix/lib/netstandard1.7/System.Threading.Thread.dll", + "runtimes/unix/lib/uap10.1/System.Threading.Thread.dll", + "runtimes/win/lib/netstandard1.7/System.Threading.Thread.dll", + "runtimes/win/lib/uap10.1/System.Threading.Thread.dll", + "system.threading.thread.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.thread.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.ThreadPool/4.4.0-beta-24913-02": { + "sha512": "lD4kymw3NHChTiqHFH9zxVvfTY8uLBy34KdBP661x8FIeiN78DwQEKMVZOQ2zZ/ThmARWxG4E7YzH1NOkJacGQ==", + "type": "package", + "path": "system.threading.threadpool/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.ThreadPool.dll", + "lib/net463/System.Threading.ThreadPool.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.ThreadPool.dll", + "lib/netstandard1.7/System.Threading.ThreadPool.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.ThreadPool.dll", + "ref/net463/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/de/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/es/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/it/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml", + "ref/netstandard1.7/System.Threading.ThreadPool.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.threadpool.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.threadpool.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.ValueTuple/4.3.1": { + "sha512": "xzDmg26Wb2x2rFDjwziaMYQJqxhrK+b4OUC008o7CnZhUMb2p5XfwgOgAQ/WlKhqxMUSDWRUm5/lNTKdh27pJA==", + "type": "package", + "path": "system.valuetuple/4.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netstandard1.0/.xml", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/.xml", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.3.1.nupkg.sha512", + "system.valuetuple.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.4.0-beta-24913-02": { + "sha512": "xrGH2gJKLBb6cPvZPtdk9P3CXg3TpPoZOFhv8bJCxk1wYzJfPbeQbeXwAJOS/fnu9tbMatwmJO0orAgopQAS0A==", + "type": "package", + "path": "system.xml.readerwriter/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/net463/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/netstandard1.7/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/net463/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.7/System.Xml.ReaderWriter.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.4.0-beta-24913-02.nupkg.sha512", + "system.xml.readerwriter.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.4.0-beta-24913-02": { + "sha512": "IgZcUmPiMEq7qXkg1pNX7vKx7a70QdaNo1hvpuKInNMCXAjmvg/CYY6uZTVWMxkZV4xyEY4kt5UnBhvn4MSjyQ==", + "type": "package", + "path": "system.xml.xmldocument/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/net463/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/netstandard1.7/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/net463/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/netstandard1.7/System.Xml.XmlDocument.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.4.0-beta-24913-02.nupkg.sha512", + "system.xml.xmldocument.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.XmlSerializer/4.3.0": { + "sha512": "MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==", + "type": "package", + "path": "system.xml.xmlserializer/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "lib/netstandard1.3/System.Xml.XmlSerializer.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XmlSerializer.dll", + "ref/netcore50/System.Xml.XmlSerializer.xml", + "ref/netcore50/de/System.Xml.XmlSerializer.xml", + "ref/netcore50/es/System.Xml.XmlSerializer.xml", + "ref/netcore50/fr/System.Xml.XmlSerializer.xml", + "ref/netcore50/it/System.Xml.XmlSerializer.xml", + "ref/netcore50/ja/System.Xml.XmlSerializer.xml", + "ref/netcore50/ko/System.Xml.XmlSerializer.xml", + "ref/netcore50/ru/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/System.Xml.XmlSerializer.dll", + "ref/netstandard1.0/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/de/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/es/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/it/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/System.Xml.XmlSerializer.dll", + "ref/netstandard1.3/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/de/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/es/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/it/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "system.xml.xmlserializer.4.3.0.nupkg.sha512", + "system.xml.xmlserializer.nuspec" + ] + }, + "xunit/2.4.1-pre.build.4059": { + "sha512": "Kt50VVI9yqbPLPICi1J2Sl2zoidhyMqbT+ywCSINDDXCJhVOXVBoE/1geWui5Sppx8Cv5U0DmYCLxveaOB0mLw==", + "type": "package", + "path": "xunit/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "xunit.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.nuspec" + ] + }, + "xunit.abstractions/2.0.3": { + "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", + "type": "package", + "path": "xunit.abstractions/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/netstandard1.0/xunit.abstractions.dll", + "lib/netstandard1.0/xunit.abstractions.xml", + "lib/netstandard2.0/xunit.abstractions.dll", + "lib/netstandard2.0/xunit.abstractions.xml", + "xunit.abstractions.2.0.3.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.analyzers/0.10.0": { + "sha512": "4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg==", + "type": "package", + "path": "xunit.analyzers/0.10.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/xunit.analyzers.dll", + "tools/install.ps1", + "tools/uninstall.ps1", + "xunit.analyzers.0.10.0.nupkg.sha512", + "xunit.analyzers.nuspec" + ] + }, + "xunit.assert/2.4.1-pre.build.4059": { + "sha512": "PrfmhpgBTilGWP4DC6Q2FV17TEfTpnCARMjYNMQvUF1IFV5DhXNU5ChC0JeL17ctp89krn4Pld4/Wiuq4ILMxw==", + "type": "package", + "path": "xunit.assert/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.1/xunit.assert.dll", + "lib/netstandard1.1/xunit.assert.xml", + "lib/netstandard2.0/xunit.assert.dll", + "lib/netstandard2.0/xunit.assert.xml", + "xunit.assert.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.core/2.4.1-pre.build.4059": { + "sha512": "nQh89ZP+wmC79euBg5p/6Jr8rugPTQo/GAx9Wry2Pgu9q4ltDv9XeQTqsQE/trvqOjyrTRtCOQT1P+vcufj0Kg==", + "type": "package", + "path": "xunit.core/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/xunit.core.props", + "build/xunit.core.targets", + "buildMultiTargeting/xunit.core.props", + "buildMultiTargeting/xunit.core.targets", + "xunit.core.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.core.nuspec" + ] + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "sha512": "MpnCaHPR67FdYgdkbzuSIxtYdGJaY6WwjotyvifGKcy94M3Rm2eCQqKQsFSN1TbcRhHRCweOo24+E+wnGxjuTw==", + "type": "package", + "path": "xunit.extensibility.core/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/xunit.core.dll", + "lib/net452/xunit.core.dll.tdnet", + "lib/net452/xunit.core.xml", + "lib/net452/xunit.runner.tdnet.dll", + "lib/net452/xunit.runner.utility.net452.dll", + "lib/netstandard1.1/xunit.core.dll", + "lib/netstandard1.1/xunit.core.xml", + "lib/netstandard2.0/xunit.core.dll", + "lib/netstandard2.0/xunit.core.xml", + "xunit.extensibility.core.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "sha512": "sLmjOlIAAs4omfY/019PQMXWkxpxd/CfVnTEMBBEN89fU/bPfeoNRBjnqJ54tHpK2xDCPUye19PNSFH4aW6B8Q==", + "type": "package", + "path": "xunit.extensibility.execution/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/xunit.execution.desktop.dll", + "lib/net452/xunit.execution.desktop.xml", + "lib/netstandard1.1/xunit.execution.dotnet.dll", + "lib/netstandard1.1/xunit.execution.dotnet.xml", + "lib/netstandard2.0/xunit.execution.dotnet.dll", + "lib/netstandard2.0/xunit.execution.dotnet.xml", + "xunit.extensibility.execution.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "sha512": "FBASqurcvUoVQ52vY2LH4XUf1/Hkz9wmcuBj5IqIhEpgK+YjhWePepguSlpSre44hhhWNe5WO3XIrZ6pGTbyng==", + "type": "package", + "path": "xunit.performance.api/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.api.dll", + "lib/net461/xunit.performance.api.xml", + "lib/netstandard1.5/xunit.performance.api.dll", + "lib/netstandard1.5/xunit.performance.api.xml", + "xunit.performance.api.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.api.nuspec" + ] + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "sha512": "1CEv1zleRb8D0mDckZjpR8VPaP+2YSeMUAnnb/a3aL0DrG9IEeTN2Uu+30IaX/OHG7iuqLX9zWja+sey76Us0w==", + "type": "package", + "path": "xunit.performance.core/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/netstandard1.3/xunit.performance.core.dll", + "lib/netstandard1.3/xunit.performance.core.xml", + "xunit.performance.core.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.core.nuspec" + ] + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "sha512": "hfNLz/+fA1CqHPQWexPoQBDMs1y1x8gdy1WgQH1nUG5Jf1KVviUddy3+MCTEbuELyqrcLpkR/p57WLUAYKwhCw==", + "type": "package", + "path": "xunit.performance.execution/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.execution.dll", + "lib/net461/xunit.performance.execution.xml", + "lib/netstandard1.5/xunit.performance.execution.dll", + "lib/netstandard1.5/xunit.performance.execution.xml", + "xunit.performance.execution.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.execution.nuspec" + ] + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "sha512": "VWtijjK9HfQvx2nmQ15hEAtBdHEmWSVk0Gc60+yEF+xMq/wZmD0jSvCykW5Jz0ponX88Z6RU39ZjRDq+vLnCgg==", + "type": "package", + "path": "xunit.performance.metrics/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.metrics.dll", + "lib/net461/xunit.performance.metrics.xml", + "lib/netstandard1.5/xunit.performance.metrics.dll", + "lib/netstandard1.5/xunit.performance.metrics.xml", + "xunit.performance.metrics.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.metrics.nuspec" + ] + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "sha512": "oWTxKNZbtkn8HBHi59zxTRP4y80SlaOqFOu+ausTLOyOPr7/aZ39U6L9F8mh69890NRbW2Qcd/UdP3YvPsseHw==", + "type": "package", + "path": "xunit.runner.console/2.4.1-pre.build.4059", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/xunit.runner.console.props", + "tools/net452/xunit.abstractions.dll", + "tools/net452/xunit.console.exe", + "tools/net452/xunit.console.exe.config", + "tools/net452/xunit.console.x86.exe", + "tools/net452/xunit.console.x86.exe.config", + "tools/net452/xunit.runner.reporters.net452.dll", + "tools/net452/xunit.runner.utility.net452.dll", + "tools/net46/xunit.abstractions.dll", + "tools/net46/xunit.console.exe", + "tools/net46/xunit.console.exe.config", + "tools/net46/xunit.console.x86.exe", + "tools/net46/xunit.console.x86.exe.config", + "tools/net46/xunit.runner.reporters.net452.dll", + "tools/net46/xunit.runner.utility.net452.dll", + "tools/net461/xunit.abstractions.dll", + "tools/net461/xunit.console.exe", + "tools/net461/xunit.console.exe.config", + "tools/net461/xunit.console.x86.exe", + "tools/net461/xunit.console.x86.exe.config", + "tools/net461/xunit.runner.reporters.net452.dll", + "tools/net461/xunit.runner.utility.net452.dll", + "tools/net462/xunit.abstractions.dll", + "tools/net462/xunit.console.exe", + "tools/net462/xunit.console.exe.config", + "tools/net462/xunit.console.x86.exe", + "tools/net462/xunit.console.x86.exe.config", + "tools/net462/xunit.runner.reporters.net452.dll", + "tools/net462/xunit.runner.utility.net452.dll", + "tools/net47/xunit.abstractions.dll", + "tools/net47/xunit.console.exe", + "tools/net47/xunit.console.exe.config", + "tools/net47/xunit.console.x86.exe", + "tools/net47/xunit.console.x86.exe.config", + "tools/net47/xunit.runner.reporters.net452.dll", + "tools/net47/xunit.runner.utility.net452.dll", + "tools/net471/xunit.abstractions.dll", + "tools/net471/xunit.console.exe", + "tools/net471/xunit.console.exe.config", + "tools/net471/xunit.console.x86.exe", + "tools/net471/xunit.console.x86.exe.config", + "tools/net471/xunit.runner.reporters.net452.dll", + "tools/net471/xunit.runner.utility.net452.dll", + "tools/net472/xunit.abstractions.dll", + "tools/net472/xunit.console.exe", + "tools/net472/xunit.console.exe.config", + "tools/net472/xunit.console.x86.exe", + "tools/net472/xunit.console.x86.exe.config", + "tools/net472/xunit.runner.reporters.net452.dll", + "tools/net472/xunit.runner.utility.net452.dll", + "tools/netcoreapp1.0/xunit.abstractions.dll", + "tools/netcoreapp1.0/xunit.console.deps.json", + "tools/netcoreapp1.0/xunit.console.dll", + "tools/netcoreapp1.0/xunit.console.dll.config", + "tools/netcoreapp1.0/xunit.console.runtimeconfig.json", + "tools/netcoreapp1.0/xunit.runner.reporters.netcoreapp10.dll", + "tools/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll", + "tools/netcoreapp1.0/xunit.runner.utility.netcoreapp10.xml", + "tools/netcoreapp2.0/xunit.abstractions.dll", + "tools/netcoreapp2.0/xunit.console.deps.json", + "tools/netcoreapp2.0/xunit.console.dll", + "tools/netcoreapp2.0/xunit.console.dll.config", + "tools/netcoreapp2.0/xunit.console.runtimeconfig.json", + "tools/netcoreapp2.0/xunit.runner.reporters.netcoreapp10.dll", + "tools/netcoreapp2.0/xunit.runner.utility.netcoreapp10.dll", + "tools/netcoreapp2.0/xunit.runner.utility.netcoreapp10.xml", + "xunit.runner.console.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.runner.console.nuspec" + ] + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "sha512": "YyTcFxooSkYo9gr8HgLhHZ7T5PHjnCLC9dGXgbLwMCNZeqO+DzY8nWehE++FasEwMAlUv87MLhLEVXoVvMQtKQ==", + "type": "package", + "path": "xunit.runner.utility/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/xunit.runner.utility.net35.dll", + "lib/net35/xunit.runner.utility.net35.xml", + "lib/net452/xunit.runner.utility.net452.dll", + "lib/net452/xunit.runner.utility.net452.xml", + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll", + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.xml", + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll", + "lib/netstandard1.1/xunit.runner.utility.netstandard11.xml", + "lib/netstandard1.5/xunit.runner.utility.netstandard15.dll", + "lib/netstandard1.5/xunit.runner.utility.netstandard15.xml", + "lib/netstandard2.0/xunit.runner.utility.netstandard20.dll", + "lib/netstandard2.0/xunit.runner.utility.netstandard20.xml", + "lib/uap10.0/xunit.runner.utility.uwp10.dll", + "lib/uap10.0/xunit.runner.utility.uwp10.pri", + "lib/uap10.0/xunit.runner.utility.uwp10.xml", + "xunit.runner.utility.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + ".NETStandard,Version=v1.4": [ + "Microsoft.Diagnostics.Tracing.TraceEvent >= 2.0.43", + "Microsoft.NETCore.Platforms >= 3.1.0-preview3.19551.4", + "System.Collections.NonGeneric >= 4.4.0-beta-24913-02", + "System.Console >= 4.4.0-beta-24913-02", + "System.Diagnostics.Process >= 4.4.0-beta-24913-02", + "System.IO.FileSystem >= 4.4.0-beta-24913-02", + "System.Linq >= 4.4.0-beta-24913-02", + "System.Linq.Expressions >= 4.4.0-beta-24913-02", + "System.Linq.Parallel >= 4.4.0-beta-24913-02", + "System.Memory >= 4.5.2", + "System.Numerics.Vectors >= 4.5.0", + "System.Reflection >= 4.4.0-beta-24913-02", + "System.Reflection.Extensions >= 4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions >= 4.7.0-preview3.19551.4", + "System.Runtime >= 4.4.0-beta-24913-02", + "System.Runtime.CompilerServices.Unsafe >= 4.7.0-preview3.19551.4", + "System.Runtime.Extensions >= 4.4.0-beta-24913-02", + "System.Runtime.Numerics >= 4.4.0-beta-24913-02", + "System.Text.RegularExpressions >= 4.4.0-beta-24913-02", + "System.Threading >= 4.4.0-beta-24913-02", + "System.Threading.Tasks >= 4.4.0-beta-24913-02", + "System.Threading.Tasks.Parallel >= 4.4.0-beta-24913-02", + "System.Threading.Thread >= 4.4.0-beta-24913-02", + "System.Threading.ThreadPool >= 4.4.0-beta-24913-02", + "System.Xml.XmlDocument >= 4.4.0-beta-24913-02", + "xunit >= 2.4.1-pre.build.4059", + "xunit.performance.api >= 1.0.0-beta-build0015", + "xunit.performance.core >= 1.0.0-beta-build0015", + "xunit.performance.execution >= 1.0.0-beta-build0015", + "xunit.performance.metrics >= 1.0.0-beta-build0015", + "xunit.runner.console >= 2.4.1-pre.build.4059", + "xunit.runner.utility >= 2.4.1-pre.build.4059" + ] + }, + "packageFolders": { + "/home/z/Dev/coreclr-sec/.packages": {} + }, + "project": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark/benchmark.csproj", + "projectName": "benchmark", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark/benchmark.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark/obj-linux-x64", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netstandard1.4" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netstandard1.4": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netstandard1.4": { + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": { + "target": "Package", + "version": "[2.0.43, )" + }, + "Microsoft.NETCore.Platforms": { + "target": "Package", + "version": "[3.1.0-preview3.19551.4, )" + }, + "System.Collections.NonGeneric": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Console": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Diagnostics.Process": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.IO.FileSystem": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq.Expressions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq.Parallel": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Memory": { + "target": "Package", + "version": "[4.5.2, )" + }, + "System.Numerics.Vectors": { + "target": "Package", + "version": "[4.5.0, )" + }, + "System.Reflection": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.TypeExtensions": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Runtime": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.CompilerServices.Unsafe": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Runtime.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Numerics": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Text.RegularExpressions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Tasks": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Tasks.Parallel": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Thread": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.ThreadPool": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Xml.XmlDocument": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.performance.api": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.core": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.execution": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.metrics": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.runner.console": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.runner.utility": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x64": { + "#import": [] + } + } + }, + "logs": [ + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark -> System.Memory 4.5.2 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark -> System.Memory 4.5.2 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark -> System.Numerics.Vectors 4.5.0 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark -> System.Numerics.Vectors 4.5.0 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x64" + ] + } + ] +}
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark/obj-linux-x86/benchmark.csproj.nuget.cache b/tests/src/JIT/config/benchmark/obj-linux-x86/benchmark.csproj.nuget.cache new file mode 100644 index 0000000000..c0ba8c3332 --- /dev/null +++ b/tests/src/JIT/config/benchmark/obj-linux-x86/benchmark.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "uwZBQn5IoaXkG9Rd1goMINXRXJmwDIzmVCmYspeNBgkhgbx6UUQoUgFF0xSenowVN6YtA/9Wh2dJSlnkq+/1ng==", + "success": true +}
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark/obj-linux-x86/benchmark.csproj.nuget.dgspec.json b/tests/src/JIT/config/benchmark/obj-linux-x86/benchmark.csproj.nuget.dgspec.json new file mode 100644 index 0000000000..a52cabecbf --- /dev/null +++ b/tests/src/JIT/config/benchmark/obj-linux-x86/benchmark.csproj.nuget.dgspec.json @@ -0,0 +1,181 @@ +{ + "format": 1, + "restore": { + "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark/benchmark.csproj": {} + }, + "projects": { + "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark/benchmark.csproj": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark/benchmark.csproj", + "projectName": "benchmark", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark/benchmark.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark/obj-linux-x86", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netstandard1.4" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netstandard1.4": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netstandard1.4": { + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": { + "target": "Package", + "version": "[2.0.43, )" + }, + "Microsoft.NETCore.Platforms": { + "target": "Package", + "version": "[3.1.0-preview3.19551.4, )" + }, + "System.Collections.NonGeneric": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Console": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Diagnostics.Process": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.IO.FileSystem": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq.Expressions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq.Parallel": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Memory": { + "target": "Package", + "version": "[4.5.2, )" + }, + "System.Numerics.Vectors": { + "target": "Package", + "version": "[4.5.0, )" + }, + "System.Reflection": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.TypeExtensions": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Runtime": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.CompilerServices.Unsafe": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Runtime.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Numerics": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Text.RegularExpressions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Tasks": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Tasks.Parallel": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Thread": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.ThreadPool": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Xml.XmlDocument": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.performance.api": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.core": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.execution": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.metrics": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.runner.console": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.runner.utility": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x86": { + "#import": [] + } + } + } + } +}
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark/obj-linux-x86/benchmark.csproj.nuget.g.props b/tests/src/JIT/config/benchmark/obj-linux-x86/benchmark.csproj.nuget.g.props new file mode 100644 index 0000000000..e448de6ae4 --- /dev/null +++ b/tests/src/JIT/config/benchmark/obj-linux-x86/benchmark.csproj.nuget.g.props @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> + <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> + <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> + <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageRoot> + <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageFolders> + <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.4.0</NuGetToolVersion> + </PropertyGroup> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> + <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)/xunit.runner.console/2.4.1-pre.build.4059/build/xunit.runner.console.props" Condition="Exists('$(NuGetPackageRoot)/xunit.runner.console/2.4.1-pre.build.4059/build/xunit.runner.console.props')" /> + <Import Project="$(NuGetPackageRoot)/microsoft.diagnostics.tracing.traceevent/2.0.43/build/Microsoft.Diagnostics.Tracing.TraceEvent.props" Condition="Exists('$(NuGetPackageRoot)/microsoft.diagnostics.tracing.traceevent/2.0.43/build/Microsoft.Diagnostics.Tracing.TraceEvent.props')" /> + <Import Project="$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.props" Condition="Exists('$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.props')" /> + </ImportGroup> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Pkgxunit_runner_console Condition=" '$(Pkgxunit_runner_console)' == '' ">/home/z/Dev/coreclr-sec/.packages/xunit.runner.console/2.4.1-pre.build.4059</Pkgxunit_runner_console> + <Pkgxunit_analyzers Condition=" '$(Pkgxunit_analyzers)' == '' ">/home/z/Dev/coreclr-sec/.packages/xunit.analyzers/0.10.0</Pkgxunit_analyzers> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark/obj-linux-x86/benchmark.csproj.nuget.g.targets b/tests/src/JIT/config/benchmark/obj-linux-x86/benchmark.csproj.nuget.g.targets new file mode 100644 index 0000000000..96b54d803c --- /dev/null +++ b/tests/src/JIT/config/benchmark/obj-linux-x86/benchmark.csproj.nuget.g.targets @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> + <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.targets" Condition="Exists('$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.targets')" /> + </ImportGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/JIT/config/benchmark/obj-linux-x86/project.assets.json b/tests/src/JIT/config/benchmark/obj-linux-x86/project.assets.json new file mode 100644 index 0000000000..d0502e34ea --- /dev/null +++ b/tests/src/JIT/config/benchmark/obj-linux-x86/project.assets.json @@ -0,0 +1,8623 @@ +{ + "version": 3, + "targets": { + ".NETStandard,Version=v1.4": { + "CommandLineParser/2.1.1-beta": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-24027", + "System.Console": "4.0.0-rc2-24027", + "System.Diagnostics.Debug": "4.0.11-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.IO": "4.1.0-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Linq.Expressions": "4.0.11-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Reflection.Extensions": "4.0.1-rc2-24027", + "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime": "4.1.0-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027" + }, + "compile": { + "lib/netstandard1.5/CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard1.5/CommandLine.dll": {} + } + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + } + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "type": "package", + "build": { + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.2.0-beta-24913-02": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.AppContext.dll": {} + } + }, + "System.Buffers/4.4.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Buffers.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Collections.Concurrent/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Console/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Process/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.Win32.Primitives": "4.4.0-beta-24913-02", + "Microsoft.Win32.Registry": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.Thread": "4.4.0-beta-24913-02", + "System.Threading.ThreadPool": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.4/System.Diagnostics.Process.dll": {} + }, + "runtimeTargets": { + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Globalization/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Linq.Expressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Linq.Parallel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Collections.Concurrent": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Linq": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Linq.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Linq.Parallel.dll": {} + } + }, + "System.Memory/4.5.2": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Buffers": "4.4.0", + "System.Runtime.CompilerServices.Unsafe": "4.5.2" + }, + "compile": { + "lib/netstandard1.1/System.Memory.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Memory.dll": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "ref/netstandard1.0/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Numerics.Vectors.dll": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/portable45-net45+win8+wpa81/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp80+wpa81/_._": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + }, + "System.Runtime.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime.Handles/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Numerics/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} + }, + "runtime": { + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Text.Encoding/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.RegularExpressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading.Tasks.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Thread/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.ValueTuple/4.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "System.Xml.ReaderWriter/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Text.RegularExpressions": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.Tasks.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "[2.4.1-pre.build.4059]", + "xunit.core": "[2.4.1-pre.build.4059]" + } + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + } + }, + "xunit.analyzers/0.10.0": { + "type": "package" + }, + "xunit.assert/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.1/xunit.assert.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.assert.dll": {} + } + }, + "xunit.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.1-pre.build.4059]", + "xunit.extensibility.execution": "[2.4.1-pre.build.4059]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "[2.4.1-pre.build.4059]" + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + } + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "CommandLineParser": "2.1.1-beta", + "Microsoft.3rdpartytools.MarkdownLog": "0.10.0-alpha-experimental", + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.ValueTuple": "4.3.1", + "System.Xml.XmlSerializer": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015", + "xunit.performance.execution": "1.0.0-beta-build0015", + "xunit.performance.metrics": "1.0.0-beta-build0015", + "xunit.runner.utility": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + } + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + } + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit": "2.2.0-beta2-build3300", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + } + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Formatters": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + } + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "type": "package", + "build": { + "build/xunit.runner.console.props": {} + } + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll": {} + } + } + }, + ".NETStandard,Version=v1.4/linux-x86": { + "CommandLineParser/2.1.1-beta": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-24027", + "System.Console": "4.0.0-rc2-24027", + "System.Diagnostics.Debug": "4.0.11-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.IO": "4.1.0-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Linq.Expressions": "4.0.11-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Reflection.Extensions": "4.0.1-rc2-24027", + "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime": "4.1.0-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027" + }, + "compile": { + "lib/netstandard1.5/CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard1.5/CommandLine.dll": {} + } + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + } + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "type": "package", + "build": { + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.2.0-beta-24913-02": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.unix.Microsoft.Win32.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "runtime.any.System.Collections/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tools/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.Tools.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "runtime.any.System.Globalization/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.dll": {} + } + }, + "runtime.any.System.Globalization.Calendars/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "runtime.any.System.IO/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.IO.dll": {} + } + }, + "runtime.any.System.Reflection/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.dll": {} + } + }, + "runtime.any.System.Reflection.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Primitives.dll": {} + } + }, + "runtime.any.System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Resources.ResourceManager.dll": {} + } + }, + "runtime.any.System.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.dll": {} + } + }, + "runtime.any.System.Runtime.Handles/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "runtime.any.System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.InteropServices.dll": {} + } + }, + "runtime.any.System.Text.Encoding/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "runtime.any.System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "runtime.any.System.Threading.Tasks/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "runtime.any.System.Threading.Timer/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Timer.dll": {} + } + }, + "runtime.native.System/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.unix.Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.unix.System.Console/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Console.dll": {} + } + }, + "runtime.unix.System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.unix.System.IO.FileSystem/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Buffers": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "runtime.unix.System.Net.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "runtime.unix.System.Net.Sockets/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.Net.NameResolution": "4.4.0-beta-24913-02", + "System.Net.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.ThreadPool": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "runtime.unix.System.Private.Uri/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.0/System.Private.Uri.dll": {} + } + }, + "runtime.unix.System.Runtime.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.AppContext.dll": {} + } + }, + "System.Buffers/4.4.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Buffers.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Collections": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Collections.Concurrent/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Console/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "runtime.unix.System.Console": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.unix.System.Diagnostics.Debug": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Process/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.Win32.Primitives": "4.4.0-beta-24913-02", + "Microsoft.Win32.Registry": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.Thread": "4.4.0-beta-24913-02", + "System.Threading.ThreadPool": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.4/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Diagnostics.Tools": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Diagnostics.Tracing": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Globalization/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Globalization": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization.Calendars": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.any.System.IO": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {} + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.unix.System.IO.FileSystem": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Linq.Expressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Linq.Parallel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Collections.Concurrent": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Linq": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Linq.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Linq.Parallel.dll": {} + } + }, + "System.Memory/4.5.2": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Buffers": "4.4.0", + "System.Runtime.CompilerServices.Unsafe": "4.5.2" + }, + "compile": { + "lib/netstandard1.1/System.Memory.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Memory.dll": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Net.NameResolution/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Net.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Security.Principal.Windows": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {} + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.unix.System.Net.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.unix.System.Net.Sockets": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "ref/netstandard1.0/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Numerics.Vectors.dll": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Private.Uri/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "runtime.unix.System.Private.Uri": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + } + }, + "System.Reflection/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Reflection": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Reflection.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/portable45-net45+win8+wpa81/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Resources.ResourceManager": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "runtime.any.System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp80+wpa81/_._": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + }, + "System.Runtime.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.unix.System.Runtime.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime.Handles/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Runtime.Handles": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "runtime.any.System.Runtime.InteropServices": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "System.Runtime.Numerics/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} + }, + "runtime": { + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.Claims/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Security.Principal": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.Win32.Primitives": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Security.Claims": "4.4.0-beta-24913-02", + "System.Security.Principal": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll": {} + } + }, + "System.Text.Encoding/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Text.Encoding": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "runtime.any.System.Text.Encoding.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.RegularExpressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading.Tasks.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Thread/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Threading.Timer": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.ValueTuple/4.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "System.Xml.ReaderWriter/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Text.RegularExpressions": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.Tasks.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "[2.4.1-pre.build.4059]", + "xunit.core": "[2.4.1-pre.build.4059]" + } + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + } + }, + "xunit.analyzers/0.10.0": { + "type": "package" + }, + "xunit.assert/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.1/xunit.assert.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.assert.dll": {} + } + }, + "xunit.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.1-pre.build.4059]", + "xunit.extensibility.execution": "[2.4.1-pre.build.4059]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "[2.4.1-pre.build.4059]" + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + } + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "CommandLineParser": "2.1.1-beta", + "Microsoft.3rdpartytools.MarkdownLog": "0.10.0-alpha-experimental", + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.ValueTuple": "4.3.1", + "System.Xml.XmlSerializer": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015", + "xunit.performance.execution": "1.0.0-beta-build0015", + "xunit.performance.metrics": "1.0.0-beta-build0015", + "xunit.runner.utility": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + } + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + } + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit": "2.2.0-beta2-build3300", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + } + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Formatters": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + } + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "type": "package", + "build": { + "build/xunit.runner.console.props": {} + } + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll": {} + } + } + } + }, + "libraries": { + "CommandLineParser/2.1.1-beta": { + "sha512": "TmWNdtqLmtqLbwr0c9l1nEjjk39GB7wevl+1rxN907kjmdUUu5s470bWJFPEckfjYTnZ216xziW5fMXP35KVXg==", + "type": "package", + "path": "commandlineparser/2.1.1-beta", + "files": [ + ".nupkg.metadata", + "commandlineparser.2.1.1-beta.nupkg.sha512", + "commandlineparser.nuspec", + "lib/net40/CommandLine.XML", + "lib/net40/CommandLine.dll", + "lib/net45/CommandLine.XML", + "lib/net45/CommandLine.dll", + "lib/netstandard1.5/CommandLine.dll", + "lib/netstandard1.5/CommandLine.xml", + "readme.md" + ] + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "sha512": "BlzmPbwd0w2OGgXHFRWYu0tsJj6f6rAglvZ5q5hi71TGl6DDCZjP7WmMvcEFZi5MGGWkZ3VoPXQ4hJMMuGJF6A==", + "type": "package", + "path": "microsoft.3rdpartytools.markdownlog/0.10.0-alpha-experimental", + "files": [ + ".nupkg.metadata", + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll", + "microsoft.3rdpartytools.markdownlog.0.10.0-alpha-experimental.nupkg.sha512", + "microsoft.3rdpartytools.markdownlog.nuspec" + ] + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "sha512": "76ol4cZYvYiaiP5Vbows1ts2WDGpi/x2QxaoAToNCoGD+s2v7znzxPygPprXNYW4HmWgN8z3FsItIZb45X8OgQ==", + "type": "package", + "path": "microsoft.diagnostics.tracing.traceevent/2.0.43", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props", + "lib/native/amd64/KernelTraceControl.dll", + "lib/native/amd64/msdia140.dll", + "lib/native/x86/KernelTraceControl.Win61.dll", + "lib/native/x86/KernelTraceControl.dll", + "lib/native/x86/msdia140.dll", + "lib/net45/Dia2Lib.dll", + "lib/net45/Microsoft.Diagnostics.FastSerialization.dll", + "lib/net45/Microsoft.Diagnostics.FastSerialization.xml", + "lib/net45/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/net45/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/net45/OSExtensions.dll", + "lib/net45/TraceReloggerLib.dll", + "lib/netstandard1.6/Dia2Lib.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.xml", + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/netstandard1.6/OSExtensions.dll", + "lib/netstandard1.6/TraceReloggerLib.dll", + "lib/netstandard2.0/Dia2Lib.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.FastSerialization.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.FastSerialization.xml", + "lib/netstandard2.0/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/netstandard2.0/OSExtensions.dll", + "lib/netstandard2.0/TraceReloggerLib.dll", + "microsoft.diagnostics.tracing.traceevent.2.0.43.nupkg.sha512", + "microsoft.diagnostics.tracing.traceevent.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "sha512": "Clr2Jue6oyBlnsVf9g5qjoi06+QDYVq+U32buU9W+mRYeIFg4LXeJei1q6P/1niiKX8WIVo7KbBnqW80jVcOvw==", + "type": "package", + "path": "microsoft.netcore.platforms/3.1.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.3.1.0-preview3.19551.4.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.2.0-beta-24913-02": { + "sha512": "Z76BzrF4Nz0qVN676Tlmk3GdRxvlFDQZF6FoBRcfIkpEd07H4JLkuqryqTlbQ30X3XXUzAtsImuI2yW9eYb55g==", + "type": "package", + "path": "microsoft.netcore.targets/1.2.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.2.0-beta-24913-02.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "sha512": "gPGph68msdAFoQB9Emn9zxxR7Igg58Nm76zgI4UAFJINBPPsrCHxfXTsJY4qhsnecahDw609V+TAL8tS32XaDg==", + "type": "package", + "path": "microsoft.win32.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/net463/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/net463/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.7/Microsoft.Win32.Primitives.dll", + "ref/uap10.1/Microsoft.Win32.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.Registry/4.4.0-beta-24913-02": { + "sha512": "XpKuSucbIipPi5XzUftawczAHaE2eeQFVNRDk951HNmYhaeAlm1qoNY5yGyepFnZUlkkttolrd/nU1ePvhIyEw==", + "type": "package", + "path": "microsoft.win32.registry/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net463/Microsoft.Win32.Registry.dll", + "microsoft.win32.registry.4.4.0-beta-24913-02.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net463/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard1.7/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard1.7/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net463/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard1.7/Microsoft.Win32.Registry.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "runtime.any.System.Collections/4.4.0-beta-24913-02": { + "sha512": "F2g9ysPsUdvdzg7PusjRSfO9lCYa8hAR2TxoT+WaJ3RqCjZUmrwzFRk6mkBVhb/jqoku1wh+DjkiVws4T/iI3A==", + "type": "package", + "path": "runtime.any.system.collections/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.dll", + "lib/netstandard1.3/System.Collections.dll", + "lib/netstandard1.7/System.Collections.dll", + "lib/uap10.1/System.Collections.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.collections.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.collections.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Collections.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Diagnostics.Tools/4.4.0-beta-24913-02": { + "sha512": "q9ex5GZda4qQWulQXw0mXxUpzYsIXA+fJsduZ4+76rFfkCTCAYnFqLg3pq1++oRe5utNE55kAWCXnPEfBjhgEw==", + "type": "package", + "path": "runtime.any.system.diagnostics.tools/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/netstandard1.3/System.Diagnostics.Tools.dll", + "lib/netstandard1.7/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tools.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.diagnostics.tools.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "sha512": "Eb5yKhR992tpieQ3k2U0Mmu7SzGodlBz7pPY4vVxrmLgO+t6bwye0Bw6+tcqO05gN3kDH47C/CKyh+ta41ULdw==", + "type": "package", + "path": "runtime.any.system.diagnostics.tracing/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "lib/netstandard1.5/System.Diagnostics.Tracing.dll", + "lib/netstandard1.7/System.Diagnostics.Tracing.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tracing.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.diagnostics.tracing.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Globalization/4.4.0-beta-24913-02": { + "sha512": "szVxxBBn8e+UDwJ+lg9C+XPSjvifllUzLuGrwhM9xPKdQUjJMrxd23yG49n0XM3q+pSIrOoHwLgWf3QDmt4PKw==", + "type": "package", + "path": "runtime.any.system.globalization/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Globalization.dll", + "lib/netstandard1.3/System.Globalization.dll", + "lib/netstandard1.7/System.Globalization.dll", + "lib/uap10.1/System.Globalization.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.globalization.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/aot/lib/uap101/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Globalization.Calendars/4.4.0-beta-24913-02": { + "sha512": "f+dLksC+5rTLnXj5ILLvAmrhvfuklzN3ba9g5O8hmbZd8zvSELF2FSw+GXbWsgqXEtjvgs4LvvH0UHkYm4nigA==", + "type": "package", + "path": "runtime.any.system.globalization.calendars/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net/_._", + "lib/netcore50/System.Globalization.Calendars.dll", + "lib/netstandard1.3/System.Globalization.Calendars.dll", + "lib/netstandard1.7/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.calendars.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.globalization.calendars.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.IO/4.4.0-beta-24913-02": { + "sha512": "jr+a+OUh/h6BIO/N+SXMDVbUln6dJIEPw/Ffaqj6aq+HmjMK1sr/aP6jw6sWRUU5hi91ppd3VMQ0xyk7Z3qBbA==", + "type": "package", + "path": "runtime.any.system.io/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.IO.dll", + "lib/netstandard1.5/System.IO.dll", + "lib/netstandard1.7/System.IO.dll", + "lib/uap10.1/System.IO.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.io.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.io.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Reflection/4.4.0-beta-24913-02": { + "sha512": "3kbe1bVviwUdBK5fN5O0646ZvpSMwMNl0uB68nf1aH9LA9EQo/xDwAbRmqbhY1wbN4ydH8PhsI2H9YNrnmRIRQ==", + "type": "package", + "path": "runtime.any.system.reflection/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.dll", + "lib/netstandard1.5/System.Reflection.dll", + "lib/netstandard1.7/System.Reflection.dll", + "lib/uap10.1/System.Reflection.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.reflection.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Reflection.Primitives/4.4.0-beta-24913-02": { + "sha512": "dEDCNyC3/P1Cl3+z5Gqhe6NZ20slv2biVjq1p8VInY9ETQTzK3QYBESPXkBlLgqG4xX+AXHIoEzWChXmj1KCYg==", + "type": "package", + "path": "runtime.any.system.reflection.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/netstandard1.3/System.Reflection.Primitives.dll", + "lib/netstandard1.7/System.Reflection.Primitives.dll", + "lib/portable45-net45+win8+wp8+wpa81/_._", + "lib/portable45-net45+win8+wpa81/_._", + "lib/uap10.1/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.reflection.primitives.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Reflection.Primitives.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "sha512": "oPqDrDykaRm+drr+dDXAveefrhawetYPTOETO84M2XeZsdgVR1YATecZun7PbbgUnSgvTR6UviiTnffEYIaIUg==", + "type": "package", + "path": "runtime.any.system.resources.resourcemanager/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/netstandard1.3/System.Resources.ResourceManager.dll", + "lib/netstandard1.7/System.Resources.ResourceManager.dll", + "lib/uap10.1/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.resources.resourcemanager.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.resources.resourcemanager.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Runtime/4.4.0-beta-24913-02": { + "sha512": "WszqTsye25+HP+UHSbqW5zW4khkQGA4fE9T/ZbPwzjA8t7+H7kc6RZEEaw3NmNBHVPCPQ2/rPs+DuVr2ely9dQ==", + "type": "package", + "path": "runtime.any.system.runtime/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.dll", + "lib/netcoreapp1.2/System.Runtime.dll", + "lib/netstandard1.5/System.Runtime.dll", + "lib/netstandard1.7/System.Runtime.dll", + "lib/uap10.1/System.Runtime.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.runtime.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Runtime.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Runtime.Handles/4.4.0-beta-24913-02": { + "sha512": "QVZWjaAvR/fAnWQ84CIfOL1bP3sROghLXJV2TVOrCSy3nGbKe8R0hJMMSiYRZ1cJSPFkXCR4ov9Giq2UWhap2w==", + "type": "package", + "path": "runtime.any.system.runtime.handles/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netstandard1.3/System.Runtime.Handles.dll", + "lib/netstandard1.7/System.Runtime.Handles.dll", + "lib/uap10.1/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.handles.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.runtime.handles.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "sha512": "fQhiPiPdc2MvT1Ly8qNhXXRhtOn80nxI7zN/Rzqa+kUBETdJzivUhs2KfaMA6CeArM0HlCZr9nkb5jPe3QSy0A==", + "type": "package", + "path": "runtime.any.system.runtime.interopservices/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "lib/netstandard1.5/System.Runtime.InteropServices.dll", + "lib/netstandard1.6/System.Runtime.InteropServices.dll", + "lib/netstandard1.7/System.Runtime.InteropServices.dll", + "lib/uap10.1/System.Runtime.InteropServices.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.interopservices.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.runtime.interopservices.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Runtime.InteropServices.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Text.Encoding/4.4.0-beta-24913-02": { + "sha512": "Xeqwi4XTKzoU787kjWuFmad+InOs+3GFQt7jYgTvZescP/O1QPOpXo2OBdohyM+G7krDarJufdl4S7fNvhWacQ==", + "type": "package", + "path": "runtime.any.system.text.encoding/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/netstandard1.3/System.Text.Encoding.dll", + "lib/netstandard1.7/System.Text.Encoding.dll", + "lib/uap10.1/System.Text.Encoding.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.text.encoding.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "sha512": "x32Af805w4cweMs7FNZCXHe/k2twQFE9l0/siz7P86e4PhHz6wc4BJ6I8AR3kxqBwtgSF7QPnLhN1yNxem8/MA==", + "type": "package", + "path": "runtime.any.system.text.encoding.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll", + "lib/netstandard1.7/System.Text.Encoding.Extensions.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.text.encoding.extensions.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Threading.Tasks/4.4.0-beta-24913-02": { + "sha512": "WfTJsPBqnWM3ba8Ua9xehHQbJW+RwcAu9LCWXuMhQAmsxssz15uycggqRdsS6hb2dRkZS9Jz3dtu3ns6Q7M2qw==", + "type": "package", + "path": "runtime.any.system.threading.tasks/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/netstandard1.3/System.Threading.Tasks.dll", + "lib/netstandard1.7/System.Threading.Tasks.dll", + "lib/uap10.1/System.Threading.Tasks.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.tasks.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.threading.tasks.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Threading.Tasks.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Threading.Timer/4.4.0-beta-24913-02": { + "sha512": "+IDpQUBdCovPqrD9tV2OlluOc+CNsDSs8GJ5WVa/ZBXCeVGX2qwZKO8a3nwnc81SpxO1zGlMo/Y2m6K0pDPnKQ==", + "type": "package", + "path": "runtime.any.system.threading.timer/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/netstandard1.3/System.Threading.Timer.dll", + "lib/netstandard1.7/System.Threading.Timer.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.timer.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.threading.timer.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.4.0-beta-24913-02": { + "sha512": "DtEYKhWPpIDQlWxyIWBiUK7Q3H2kPxVNLuOccIJY17tS1I4b0ya5FVc6WVj47Zg3SUvFuJhZzM7EqZsl5c4RWA==", + "type": "package", + "path": "runtime.native.system/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.native.system.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.4.0-beta-24913-02": { + "sha512": "J9TS90larMk0sgXUZQceCtbLzuYm3wHud/qBTLGYC5Yd6ntuZCifJxQd7QhM5jykR2u06aPCkKiv9bodz16tyw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.unix.Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "sha512": "ErIf7An6edPAgcSJcLZAYH8KEr2Aqi2H47K860JKyXLnwK0G047ksS8VtVg0v9z2cs3p+YTLTDD6dFLbg3RLpg==", + "type": "package", + "path": "runtime.unix.microsoft.win32.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.microsoft.win32.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.microsoft.win32.primitives.nuspec", + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Primitives.dll", + "runtimes/unix/lib/netstandard1.7/Microsoft.Win32.Primitives.dll", + "runtimes/unix/lib/uap10.1/Microsoft.Win32.Primitives.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Console/4.4.0-beta-24913-02": { + "sha512": "bVyMROOfEqc/7fRDnearZ6Jpeq/Psc+EFe/srfRQeVuFLMXT6cxaCvUk+4gHJisdSZQCleIdlIy4VoS/Tdvs7w==", + "type": "package", + "path": "runtime.unix.system.console/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.console.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.console.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Console.dll", + "runtimes/unix/lib/netstandard1.7/System.Console.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "sha512": "M95VkuwoXStqkCny6RJK1pECnFevEqkrvlDjyouEUXJneIB4qSH0LHH9rfrmhQosE+Z5m3KQIh1wCGneZ932Zg==", + "type": "package", + "path": "runtime.unix.system.diagnostics.debug/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.diagnostics.debug.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.diagnostics.debug.nuspec", + "runtimes/unix-corert/lib/netcoreapp1.2/System.Diagnostics.Debug.dll", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.Debug.dll", + "runtimes/unix/lib/netstandard1.7/System.Diagnostics.Debug.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.IO.FileSystem/4.4.0-beta-24913-02": { + "sha512": "4E0WH3D3D7uAHImAj3zQBRuYHSfUrCvdyv75+TuvTLw6RKPtoBR8Jq0mVAXIqshvrUfHCyBzv+cn5oY2BrBSRA==", + "type": "package", + "path": "runtime.unix.system.io.filesystem/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.io.filesystem.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.io.filesystem.nuspec", + "runtimes/unix/lib/netstandard1.3/System.IO.FileSystem.dll", + "runtimes/unix/lib/netstandard1.7/System.IO.FileSystem.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Net.Primitives/4.4.0-beta-24913-02": { + "sha512": "DBOmYuPH4khZftILHrquXZTda5PiTaBsWejwwtYtZsvUPZtF0nYmsjbCrOycbGWzS4gFZoU6vqD4dMbku4/ZEg==", + "type": "package", + "path": "runtime.unix.system.net.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.net.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.net.primitives.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Net.Primitives.dll", + "runtimes/unix/lib/netstandard1.7/System.Net.Primitives.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Net.Sockets/4.4.0-beta-24913-02": { + "sha512": "vl7Lz6dnOa+xi/WUUsZ1G3TFhroPkPrWKWVSUGg9E6mGcK5m2VqCbqcWwneYehgallbBMLOEmL7nsq+1XXCGWQ==", + "type": "package", + "path": "runtime.unix.system.net.sockets/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.net.sockets.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.net.sockets.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Net.Sockets.dll", + "runtimes/unix/lib/netstandard1.7/System.Net.Sockets.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Private.Uri/4.4.0-beta-24913-02": { + "sha512": "CM/S/SEyzccTOXKa+HAnUpAKlqspZRgfYbEQWKxTpm3iljXcj5aWuoaZFAav3Rts34FS6A7m+zCUgJeRKFGzPQ==", + "type": "package", + "path": "runtime.unix.system.private.uri/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.private.uri.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.private.uri.nuspec", + "runtimes/unix-corert/lib/netcoreapp1.2/System.Private.Uri.dll", + "runtimes/unix/lib/netstandard1.0/System.Private.Uri.dll", + "runtimes/unix/lib/uap10.1/System.Private.Uri.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Runtime.Extensions/4.4.0-beta-24913-02": { + "sha512": "SbmnGceBoHRqOLVdRdgdOd9UKizKVmwlBpbww67Hju5rUbMdOv4AdkoHrFm+Ee7kO0xHumYHlTuenmXmuFRW4Q==", + "type": "package", + "path": "runtime.unix.system.runtime.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.runtime.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.runtime.extensions.nuspec", + "runtimes/unix-corert/lib/netcoreapp1.2/System.Runtime.Extensions.dll", + "runtimes/unix/lib/netstandard1.5/System.Runtime.Extensions.dll", + "runtimes/unix/lib/netstandard1.7/System.Runtime.Extensions.dll", + "runtimes/unix/lib/uap10.1/System.Runtime.Extensions.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.4.0": { + "sha512": "AwarXzzoDwX6BgrhjoJsk6tUezZEozOT5Y9QKF94Gl4JK91I4PIIBkBco9068Y9/Dra8Dkbie99kXB8+1BaYKw==", + "type": "package", + "path": "system.buffers/4.4.0", + "files": [ + ".nupkg.metadata", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Buffers.dll", + "lib/netstandard1.1/System.Buffers.xml", + "lib/netstandard2.0/System.Buffers.dll", + "lib/netstandard2.0/System.Buffers.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.xml", + "ref/netstandard2.0/System.Buffers.dll", + "ref/netstandard2.0/System.Buffers.xml", + "system.buffers.4.4.0.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.4.0-beta-24913-02": { + "sha512": "Y9+bO37c8uVvXqkNGm90t2geVYeaEkWjMTgOkq6CkOOAtF5BpqKTvwnelXWP2pmL5fSqAMvPhsN/UXkTTxgMRA==", + "type": "package", + "path": "system.collections/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Collections.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Collections.dll", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netcoreapp1.1/System.Collections.dll", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/netstandard1.7/System.Collections.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Collections.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.4.0-beta-24913-02.nupkg.sha512", + "system.collections.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections.Concurrent/4.4.0-beta-24913-02": { + "sha512": "eky+QV4xCtubhbJk62uICQ4iygDnhoU7ojHRZbog5bqhjGWHtzvLdLu9nBu7YPKh7GDzk2ZHfL9uNECo8kKcdA==", + "type": "package", + "path": "system.collections.concurrent/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/netstandard1.7/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netcoreapp1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.4.0-beta-24913-02.nupkg.sha512", + "system.collections.concurrent.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections.NonGeneric/4.4.0-beta-24913-02": { + "sha512": "VEhSZSDYNv1aJieXt4O4grrHspFZAw+4XT7PsJwnitqYjYDNT8tiBj2ALtEt7U/Jx2tf86wHDqdnKYqlvLLqog==", + "type": "package", + "path": "system.collections.nongeneric/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/net463/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", + "lib/netstandard1.7/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/net463/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/netstandard1.7/System.Collections.NonGeneric.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.4.0-beta-24913-02.nupkg.sha512", + "system.collections.nongeneric.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Console/4.4.0-beta-24913-02": { + "sha512": "AiRso5v4Rbn6JgfRevPTZ0q+bpkfuAGQtkk4Aiuu+np3c4mEdHrW/ippOuSmIQJmvyHVEg9TQxpjrjcZUhLvkw==", + "type": "package", + "path": "system.console/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/net463/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/net463/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/netstandard1.7/System.Console.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.4.0-beta-24913-02.nupkg.sha512", + "system.console.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "sha512": "1JrMoPGopozBemABZVZvaXpPjXPqboGsxyZE+r8iuaJuU6nCVpxIvZf9LTkDZdXvdzA6UN8gNyo5JVkTpDRrtQ==", + "type": "package", + "path": "system.diagnostics.debug/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Diagnostics.Debug.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.7/System.Diagnostics.Debug.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net463/System.Diagnostics.Debug.dll", + "system.diagnostics.debug.4.4.0-beta-24913-02.nupkg.sha512", + "system.diagnostics.debug.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec" + ] + }, + "System.Diagnostics.Process/4.4.0-beta-24913-02": { + "sha512": "Wi29/vAxe1W8J8IVa9Snd5RLWFJkvRUsNW1l3n6N/7vb0thD9GHtW3bdZVk+IpudHUrvXaZc7PmVFAGu0CbMTA==", + "type": "package", + "path": "system.diagnostics.process/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.Process.dll", + "lib/net461/System.Diagnostics.Process.dll", + "lib/net463/System.Diagnostics.Process.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.Process.dll", + "ref/net461/System.Diagnostics.Process.dll", + "ref/net463/System.Diagnostics.Process.dll", + "ref/netstandard1.3/System.Diagnostics.Process.dll", + "ref/netstandard1.3/System.Diagnostics.Process.xml", + "ref/netstandard1.3/de/System.Diagnostics.Process.xml", + "ref/netstandard1.3/es/System.Diagnostics.Process.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Process.xml", + "ref/netstandard1.3/it/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Process.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Process.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Process.xml", + "ref/netstandard1.4/System.Diagnostics.Process.dll", + "ref/netstandard1.4/System.Diagnostics.Process.xml", + "ref/netstandard1.4/de/System.Diagnostics.Process.xml", + "ref/netstandard1.4/es/System.Diagnostics.Process.xml", + "ref/netstandard1.4/fr/System.Diagnostics.Process.xml", + "ref/netstandard1.4/it/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ja/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ko/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ru/System.Diagnostics.Process.xml", + "ref/netstandard1.4/zh-hans/System.Diagnostics.Process.xml", + "ref/netstandard1.4/zh-hant/System.Diagnostics.Process.xml", + "ref/netstandard1.7/System.Diagnostics.Process.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/linux/lib/netstandard1.7/System.Diagnostics.Process.dll", + "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/osx/lib/netstandard1.7/System.Diagnostics.Process.dll", + "runtimes/win/lib/net46/System.Diagnostics.Process.dll", + "runtimes/win/lib/net461/System.Diagnostics.Process.dll", + "runtimes/win/lib/net463/System.Diagnostics.Process.dll", + "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/win/lib/netstandard1.7/System.Diagnostics.Process.dll", + "runtimes/win7/lib/netcore50/_._", + "system.diagnostics.process.4.4.0-beta-24913-02.nupkg.sha512", + "system.diagnostics.process.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "sha512": "dupkxZ5nLUDX8e9OqQ1XqPJM54UZo3XGRiFeqdF/a59R90KbVSmmhqT4RPwa92fi4Unr401DQXMDBEVLLmJo9w==", + "type": "package", + "path": "system.diagnostics.tracing/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.7/System.Diagnostics.Tracing.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.4.0-beta-24913-02.nupkg.sha512", + "system.diagnostics.tracing.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Globalization/4.4.0-beta-24913-02": { + "sha512": "KxBYuqGY1P0LBAn1uXLyiYf3qXiNlhDCfCtLBemYA7mouGqqs+YPgYo2WuI5pqGU6VjAWiQvAT6PeNhofDvTHw==", + "type": "package", + "path": "system.globalization/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Globalization.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Globalization.dll", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/netstandard1.7/System.Globalization.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Globalization.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.4.0-beta-24913-02.nupkg.sha512", + "system.globalization.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.IO/4.4.0-beta-24913-02": { + "sha512": "BEqLHSTjhsWFdxz0q5OYlFc2Ic7NcWbKrn13IulLnRpF9yJClv3W2CxSHPq2IB48qKvODoYO9wEKax74+JK8eg==", + "type": "package", + "path": "system.io/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netcoreapp1.1/System.IO.dll", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/netstandard1.7/System.IO.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.IO.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.4.0-beta-24913-02.nupkg.sha512", + "system.io.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.4.0-beta-24913-02": { + "sha512": "DvhfpfWgOwoxyjPNYKhMV0xZuqGdznnaC7aIMzBc2oh+u19jZrloGl11P2DnFKJLfsth5DPLvTMxXmvKLeuykw==", + "type": "package", + "path": "system.io.filesystem/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/net463/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/net463/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/netstandard1.7/System.IO.FileSystem.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.4.0-beta-24913-02.nupkg.sha512", + "system.io.filesystem.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.FileSystem.Primitives/4.4.0-beta-24913-02": { + "sha512": "wRiqs3kiUczfE2pBubg2o3u06yQeUeqZruZG8ckw5/QJHRMCcnSaf//dyhJs+Qnq7uOYVoI2p8rEnYjm6w9omw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/net463/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.7/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/net463/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.7/System.IO.FileSystem.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "system.io.filesystem.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq/4.4.0-beta-24913-02": { + "sha512": "bjnCiY6U3f9k7fH/R3IQohZniRlLB3MdQ59n0nH8oa26YCFZO+OgjdVbSj67RgVpxupYLzXCZ80li32HcL4qdQ==", + "type": "package", + "path": "system.linq/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netcoreapp1.1/System.Linq.dll", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.4.0-beta-24913-02.nupkg.sha512", + "system.linq.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq.Expressions/4.4.0-beta-24913-02": { + "sha512": "FGRSqzfppwrXJSO+91Bi3BEOV1xejk/VHOL3bZRJYCshZ67t8s5OeOk8ywh96Xi12+RFIsXkIzJYBBYC3xV/ow==", + "type": "package", + "path": "system.linq.expressions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/netstandard1.7/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.7/System.Linq.Expressions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.4.0-beta-24913-02.nupkg.sha512", + "system.linq.expressions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq.Parallel/4.4.0-beta-24913-02": { + "sha512": "2Ho/HOJ2OXQpTahBxA3LW9iP3gb9dK4KdOfID4mwB7uPQZcHZ1UxlZNwgf2TuG26F9p9CWyEKupP+Heh+BpubA==", + "type": "package", + "path": "system.linq.parallel/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Linq.Parallel.dll", + "lib/netstandard1.3/System.Linq.Parallel.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Linq.Parallel.dll", + "ref/netcore50/System.Linq.Parallel.xml", + "ref/netcore50/de/System.Linq.Parallel.xml", + "ref/netcore50/es/System.Linq.Parallel.xml", + "ref/netcore50/fr/System.Linq.Parallel.xml", + "ref/netcore50/it/System.Linq.Parallel.xml", + "ref/netcore50/ja/System.Linq.Parallel.xml", + "ref/netcore50/ko/System.Linq.Parallel.xml", + "ref/netcore50/ru/System.Linq.Parallel.xml", + "ref/netcore50/zh-hans/System.Linq.Parallel.xml", + "ref/netcore50/zh-hant/System.Linq.Parallel.xml", + "ref/netstandard1.1/System.Linq.Parallel.dll", + "ref/netstandard1.1/System.Linq.Parallel.xml", + "ref/netstandard1.1/de/System.Linq.Parallel.xml", + "ref/netstandard1.1/es/System.Linq.Parallel.xml", + "ref/netstandard1.1/fr/System.Linq.Parallel.xml", + "ref/netstandard1.1/it/System.Linq.Parallel.xml", + "ref/netstandard1.1/ja/System.Linq.Parallel.xml", + "ref/netstandard1.1/ko/System.Linq.Parallel.xml", + "ref/netstandard1.1/ru/System.Linq.Parallel.xml", + "ref/netstandard1.1/zh-hans/System.Linq.Parallel.xml", + "ref/netstandard1.1/zh-hant/System.Linq.Parallel.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.parallel.4.4.0-beta-24913-02.nupkg.sha512", + "system.linq.parallel.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Memory/4.5.2": { + "sha512": "fvq1GNmUFwbKv+aLVYYdgu/+gc8Nu9oFujOxIjPrsf+meis9JBzTPDL6aP/eeGOz9yPj6rRLUbOjKMpsMEWpNg==", + "type": "package", + "path": "system.memory/4.5.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.2.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.NameResolution/4.4.0-beta-24913-02": { + "sha512": "xTSaAEadOMDmmGLv60VMP1GtqMq++l23ld96Rg3X/Sphde1FFLB9nUetcoWx7VwfC5sJ1m70YprLKXDS4PNG8A==", + "type": "package", + "path": "system.net.nameresolution/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.NameResolution.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.xml", + "ref/netstandard1.3/de/System.Net.NameResolution.xml", + "ref/netstandard1.3/es/System.Net.NameResolution.xml", + "ref/netstandard1.3/fr/System.Net.NameResolution.xml", + "ref/netstandard1.3/it/System.Net.NameResolution.xml", + "ref/netstandard1.3/ja/System.Net.NameResolution.xml", + "ref/netstandard1.3/ko/System.Net.NameResolution.xml", + "ref/netstandard1.3/ru/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", + "runtimes/win/lib/net46/System.Net.NameResolution.dll", + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll", + "system.net.nameresolution.4.4.0-beta-24913-02.nupkg.sha512", + "system.net.nameresolution.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.Numerics.Vectors/4.5.0": { + "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "type": "package", + "path": "system.numerics.vectors/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/netstandard2.0/System.Numerics.Vectors.dll", + "lib/netstandard2.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.Numerics.Vectors.dll", + "ref/net45/System.Numerics.Vectors.xml", + "ref/net46/System.Numerics.Vectors.dll", + "ref/net46/System.Numerics.Vectors.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", + "ref/netstandard2.0/System.Numerics.Vectors.dll", + "ref/netstandard2.0/System.Numerics.Vectors.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.numerics.vectors.4.5.0.nupkg.sha512", + "system.numerics.vectors.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ObjectModel/4.3.0": { + "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "type": "package", + "path": "system.objectmodel/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Private.Uri/4.4.0-beta-24913-02": { + "sha512": "P5WV/+fFObWRGhcbiUIx+23/hz4k/x6xFoePjam1t6xvKw+E1E4KkM8O2sRkZQ0h8i7ATr04oCi5jNnzg2+idg==", + "type": "package", + "path": "system.private.uri/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "system.private.uri.4.4.0-beta-24913-02.nupkg.sha512", + "system.private.uri.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection/4.4.0-beta-24913-02": { + "sha512": "BYjVZSHD4JDmhn5LueNSF16qU8WA6V2YAakX+q+U9lAlj/B+gV+l9vO2RkJjzexvDcZLluFzIUdpWDGtOj95wA==", + "type": "package", + "path": "system.reflection/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/netstandard1.7/System.Reflection.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Reflection.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.4.0-beta-24913-02": { + "sha512": "6f9M3xv5HkaZEbZLsjRSEHekr1bbEFUbtpr/8NHGJ3cwjdUmfirIwT3i69VxPy0xx9nj8OLbfGitQcPOUsK/sA==", + "type": "package", + "path": "system.reflection.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Reflection.Extensions.dll", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/netstandard1.3/System.Reflection.Extensions.dll", + "lib/netstandard1.7/System.Reflection.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.1/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.7/System.Reflection.Extensions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Reflection.Extensions.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll", + "runtimes/aot/lib/uap10.1/System.Reflection.Extensions.dll", + "system.reflection.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Primitives/4.4.0-beta-24913-02": { + "sha512": "qR0QeMteCI5xqH473N019aiA3kSrUYIsxHb5yD8EMeEY9ZQpDe7eETxaxm9mDtZsk5ykm3fboDda8cAsHqM5+w==", + "type": "package", + "path": "system.reflection.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Reflection.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/portable45-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.7/System.Reflection.Primitives.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/portable45-net45+win8+wpa81/_._", + "ref/uap10.1/System.Reflection.Primitives.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.TypeExtensions/4.7.0-preview3.19551.4": { + "sha512": "PYxuzuBiOLVfZLE40zmzvpJx4NBNMAFBLIKTq5FSRtHjpBK9JzmtuWylHVv9L2sp62Aux4bA7w/Ma/Q+4u8+pA==", + "type": "package", + "path": "system.reflection.typeextensions/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net461/System.Reflection.TypeExtensions.dll", + "lib/net461/System.Reflection.TypeExtensions.xml", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netcoreapp1.0/System.Reflection.TypeExtensions.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.3/System.Reflection.TypeExtensions.xml", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.xml", + "lib/netstandard2.0/System.Reflection.TypeExtensions.dll", + "lib/netstandard2.0/System.Reflection.TypeExtensions.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net461/System.Reflection.TypeExtensions.dll", + "ref/net461/System.Reflection.TypeExtensions.xml", + "ref/net472/System.Reflection.TypeExtensions.dll", + "ref/net472/System.Reflection.TypeExtensions.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/System.Reflection.TypeExtensions.dll", + "ref/netstandard2.0/System.Reflection.TypeExtensions.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "runtimes/aot/lib/uap10.0.16299/_._", + "system.reflection.typeextensions.4.7.0-preview3.19551.4.nupkg.sha512", + "system.reflection.typeextensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "sha512": "zbswj86i6yoQyMybsHm16OPp5/uoWqTJX0X7QuguoBpOdBc7XJ9H68dvuRb4VUKh/WtbvUiftn2PnLCDC5gZxA==", + "type": "package", + "path": "system.resources.resourcemanager/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Resources.ResourceManager.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.7/System.Resources.ResourceManager.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.4.0-beta-24913-02.nupkg.sha512", + "system.resources.resourcemanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime/4.4.0-beta-24913-02": { + "sha512": "OjwRltLPQUMt7uJ4vQklRo1fFK9WsL10GMyFKB+SdZknqXzxpM3zThIjMFtiQJtf8hmXTQU8H0DkMWinTHroJw==", + "type": "package", + "path": "system.runtime/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netcoreapp1.1/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/netstandard1.7/System.Runtime.dll", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/uap10.1/System.Runtime.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/4.7.0-preview3.19551.4": { + "sha512": "BU7m1FwolaGTh/+UP0SueOqXBNpcwROK7633HRNoZ9A2kBhdoi7nsKyjHLfae3GIxchV9Cxt9nDaeU2EdhPzxQ==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.4.7.0-preview3.19551.4.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Extensions/4.4.0-beta-24913-02": { + "sha512": "v1XLBAT4zvJdo4pP6wXvasll7+0v/B0X+TNueBfqsprfP0xGPOm8TOUB2ln/djZrnz/AWSOLlevjIFs6PhJD+Q==", + "type": "package", + "path": "system.runtime.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netcoreapp1.1/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.7/System.Runtime.Extensions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Runtime.Extensions.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/uap10.1/System.Runtime.Extensions.dll", + "runtimes/win/lib/net461/System.Runtime.Extensions.dll", + "system.runtime.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Handles/4.4.0-beta-24913-02": { + "sha512": "5Z5jTG+Lx8ttF1ukhKhF5cMyNbfZqsYhp8HFg6sHZojo0vPfeXYce0eRHiWkPxcZ1yHVz6V/l7iBPJIDR4nC8Q==", + "type": "package", + "path": "system.runtime.handles/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/net463/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/net463/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/netstandard1.7/System.Runtime.Handles.dll", + "ref/uap10.1/System.Runtime.Handles.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.handles.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "sha512": "T7Tv7MQGriQdoTjyztjsICDhQrsoIE4DH5yu+UlUnH5Ze+h3SRTJSdnOsXVnsA5bjq7jDTm7aFJM47KYBYi1vA==", + "type": "package", + "path": "system.runtime.interopservices/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.7/System.Runtime.InteropServices.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/uap10.1/System.Runtime.InteropServices.dll", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.interopservices.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.4.0-beta-24913-02": { + "sha512": "fdLF4k7ByLmJsRvifhthFQ+y4Fb+SmOeKlcbagzBKhKORu+JFnj9P3eGHIIcTXlzIrqPNhCvqoaGCNJBwPAWXA==", + "type": "package", + "path": "system.runtime.numerics/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Runtime.Numerics.dll", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/netstandard1.7/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.7/System.Runtime.Numerics.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.numerics.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==", + "type": "package", + "path": "system.runtime.serialization.formatters/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Runtime.Serialization.Formatters.dll", + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Runtime.Serialization.Formatters.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.serialization.formatters.4.3.0.nupkg.sha512", + "system.runtime.serialization.formatters.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Primitives.dll", + "lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "system.runtime.serialization.primitives.4.3.0.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec" + ] + }, + "System.Security.Claims/4.4.0-beta-24913-02": { + "sha512": "/PPqq7MEKJvP8kE/ud4uzqvi4gYQICRMwQV2+hxJkd2A9vKyGvDmpq2HbbMPO6U2lMTwdMUmdUm7HgEoCcy6kw==", + "type": "package", + "path": "system.security.claims/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/net463/System.Security.Claims.dll", + "lib/netstandard1.3/System.Security.Claims.dll", + "lib/netstandard1.7/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/net463/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.xml", + "ref/netstandard1.3/de/System.Security.Claims.xml", + "ref/netstandard1.3/es/System.Security.Claims.xml", + "ref/netstandard1.3/fr/System.Security.Claims.xml", + "ref/netstandard1.3/it/System.Security.Claims.xml", + "ref/netstandard1.3/ja/System.Security.Claims.xml", + "ref/netstandard1.3/ko/System.Security.Claims.xml", + "ref/netstandard1.3/ru/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hans/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hant/System.Security.Claims.xml", + "ref/netstandard1.7/System.Security.Claims.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.claims.4.4.0-beta-24913-02.nupkg.sha512", + "system.security.claims.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Principal/4.4.0-beta-24913-02": { + "sha512": "OSfvB2svUkTf3TgH2NRsZT+EOqSt57SgjQ7fahG2ahH/JFHLxfNdCnYV8l1FFjAJzHcCS6ExQvhq0wIAoa/wmA==", + "type": "package", + "path": "system.security.principal/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Security.Principal.dll", + "lib/netcore50/System.Security.Principal.dll", + "lib/netstandard1.0/System.Security.Principal.dll", + "lib/netstandard1.7/System.Security.Principal.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.1/System.Security.Principal.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/netcore50/de/System.Security.Principal.xml", + "ref/netcore50/es/System.Security.Principal.xml", + "ref/netcore50/fr/System.Security.Principal.xml", + "ref/netcore50/it/System.Security.Principal.xml", + "ref/netcore50/ja/System.Security.Principal.xml", + "ref/netcore50/ko/System.Security.Principal.xml", + "ref/netcore50/ru/System.Security.Principal.xml", + "ref/netcore50/zh-hans/System.Security.Principal.xml", + "ref/netcore50/zh-hant/System.Security.Principal.xml", + "ref/netstandard1.0/System.Security.Principal.dll", + "ref/netstandard1.0/System.Security.Principal.xml", + "ref/netstandard1.0/de/System.Security.Principal.xml", + "ref/netstandard1.0/es/System.Security.Principal.xml", + "ref/netstandard1.0/fr/System.Security.Principal.xml", + "ref/netstandard1.0/it/System.Security.Principal.xml", + "ref/netstandard1.0/ja/System.Security.Principal.xml", + "ref/netstandard1.0/ko/System.Security.Principal.xml", + "ref/netstandard1.0/ru/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hans/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hant/System.Security.Principal.xml", + "ref/netstandard1.7/System.Security.Principal.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Security.Principal.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/uap10.1/System.Security.Principal.dll", + "system.security.principal.4.4.0-beta-24913-02.nupkg.sha512", + "system.security.principal.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.4.0-beta-24913-02": { + "sha512": "ZHYzVfmY8hv2VGl8zLEI5tG3m5tZgoToMNq84ZZR3zUpFjKMaKVviIN+1r+5C+f6Xyw7T45sGMmdMya69P+bnA==", + "type": "package", + "path": "system.security.principal.windows/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net463/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net463/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard1.7/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netstandard1.7/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net463/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.7/System.Security.Principal.Windows.dll", + "system.security.principal.windows.4.4.0-beta-24913-02.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.4.0-beta-24913-02": { + "sha512": "+IM39s4C1QMr/qKpiVlLOr+FIfyXVTe7tpIx39hoTcAvZY+sXhMMS5ErJeJdaSMZgL5ZyGzcuxkfeAYDKloW6w==", + "type": "package", + "path": "system.text.encoding/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.Encoding.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.7/System.Text.Encoding.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Text.Encoding.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.4.0-beta-24913-02.nupkg.sha512", + "system.text.encoding.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "sha512": "jK3sE8t8Ngi1hSKmPI1RGXaqdtCT6dPPvfrFWDn8u45r6Zh4RJk4962v6AU5saxkssCfTiVhqDK+Drageb5mJA==", + "type": "package", + "path": "system.text.encoding.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.Encoding.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.7/System.Text.Encoding.Extensions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.text.encoding.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.RegularExpressions/4.4.0-beta-24913-02": { + "sha512": "eb/QjBezP1/UbivTA+xpNakEST/xnm1/yc563KRUINfsZ+Owz3By8ofAV2S94usp087bWls5v1sX4rZAjuTuxg==", + "type": "package", + "path": "system.text.regularexpressions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/netstandard1.7/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.7/System.Text.RegularExpressions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.4.0-beta-24913-02.nupkg.sha512", + "system.text.regularexpressions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading/4.4.0-beta-24913-02": { + "sha512": "IDvvo0zC8/kGPUnj2l79COn+vizKPxDoJ9BcLMo5R8H7CImr4t98kZyChhY1lu2PZfxo/t+4QrtXDgZflWnPkw==", + "type": "package", + "path": "system.threading/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Threading.dll", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/netstandard1.7/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Threading.dll", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/netstandard1.7/System.Threading.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks/4.4.0-beta-24913-02": { + "sha512": "tphb/t923mWZs75EwmJg6CEB5fgC2YRItN37XvPjANv9FmCxo9THV+eD8/Fdw2SxeyZ9nJtgupbk076ZAvTV1A==", + "type": "package", + "path": "system.threading.tasks/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Threading.Tasks.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.7/System.Threading.Tasks.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Threading.Tasks.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.tasks.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks.Extensions/4.4.0-beta-24913-02": { + "sha512": "NWU1a7pXP2AySgi4ZAN0qjkzXIYRoPTg6hdMEZSxAIf7mMupJTlTB0tmJZ8QarD/33ClxoSOwN6hjCSukJ9pmw==", + "type": "package", + "path": "system.threading.tasks.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "system.threading.tasks.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks.Parallel/4.4.0-beta-24913-02": { + "sha512": "osOWN3xRHMIqXMB7YNYiMLxsl9orwUrxA+WB0ujcYXjoORyrel7L1iCz5mLdZT0o4AMH0Ps6GSIM0pYtm+PVOQ==", + "type": "package", + "path": "system.threading.tasks.parallel/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.Parallel.dll", + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.Parallel.dll", + "ref/netcore50/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/de/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/es/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/it/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll", + "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.parallel.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.tasks.parallel.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Thread/4.4.0-beta-24913-02": { + "sha512": "kO2WQOh0cJd6Yoc9JJAeBWkuKHeI/Tgg0nPyPUIihsGDTzc3G0uGeEjF4MjBi/EKly9objpgAP9sLrGIgUt3fw==", + "type": "package", + "path": "system.threading.thread/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.Thread.dll", + "lib/net461/System.Threading.Thread.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.Thread.dll", + "lib/netstandard1.7/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.Thread.dll", + "ref/net461/System.Threading.Thread.dll", + "ref/netstandard1.3/System.Threading.Thread.dll", + "ref/netstandard1.3/System.Threading.Thread.xml", + "ref/netstandard1.3/de/System.Threading.Thread.xml", + "ref/netstandard1.3/es/System.Threading.Thread.xml", + "ref/netstandard1.3/fr/System.Threading.Thread.xml", + "ref/netstandard1.3/it/System.Threading.Thread.xml", + "ref/netstandard1.3/ja/System.Threading.Thread.xml", + "ref/netstandard1.3/ko/System.Threading.Thread.xml", + "ref/netstandard1.3/ru/System.Threading.Thread.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml", + "ref/netstandard1.7/System.Threading.Thread.dll", + "ref/uap10.1/System.Threading.Thread.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/uap10.1/System.Threading.Thread.dll", + "runtimes/unix/lib/netstandard1.7/System.Threading.Thread.dll", + "runtimes/unix/lib/uap10.1/System.Threading.Thread.dll", + "runtimes/win/lib/netstandard1.7/System.Threading.Thread.dll", + "runtimes/win/lib/uap10.1/System.Threading.Thread.dll", + "system.threading.thread.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.thread.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.ThreadPool/4.4.0-beta-24913-02": { + "sha512": "lD4kymw3NHChTiqHFH9zxVvfTY8uLBy34KdBP661x8FIeiN78DwQEKMVZOQ2zZ/ThmARWxG4E7YzH1NOkJacGQ==", + "type": "package", + "path": "system.threading.threadpool/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.ThreadPool.dll", + "lib/net463/System.Threading.ThreadPool.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.ThreadPool.dll", + "lib/netstandard1.7/System.Threading.ThreadPool.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.ThreadPool.dll", + "ref/net463/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/de/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/es/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/it/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml", + "ref/netstandard1.7/System.Threading.ThreadPool.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.threadpool.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.threadpool.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.ValueTuple/4.3.1": { + "sha512": "xzDmg26Wb2x2rFDjwziaMYQJqxhrK+b4OUC008o7CnZhUMb2p5XfwgOgAQ/WlKhqxMUSDWRUm5/lNTKdh27pJA==", + "type": "package", + "path": "system.valuetuple/4.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netstandard1.0/.xml", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/.xml", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.3.1.nupkg.sha512", + "system.valuetuple.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.4.0-beta-24913-02": { + "sha512": "xrGH2gJKLBb6cPvZPtdk9P3CXg3TpPoZOFhv8bJCxk1wYzJfPbeQbeXwAJOS/fnu9tbMatwmJO0orAgopQAS0A==", + "type": "package", + "path": "system.xml.readerwriter/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/net463/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/netstandard1.7/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/net463/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.7/System.Xml.ReaderWriter.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.4.0-beta-24913-02.nupkg.sha512", + "system.xml.readerwriter.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.4.0-beta-24913-02": { + "sha512": "IgZcUmPiMEq7qXkg1pNX7vKx7a70QdaNo1hvpuKInNMCXAjmvg/CYY6uZTVWMxkZV4xyEY4kt5UnBhvn4MSjyQ==", + "type": "package", + "path": "system.xml.xmldocument/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/net463/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/netstandard1.7/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/net463/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/netstandard1.7/System.Xml.XmlDocument.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.4.0-beta-24913-02.nupkg.sha512", + "system.xml.xmldocument.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.XmlSerializer/4.3.0": { + "sha512": "MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==", + "type": "package", + "path": "system.xml.xmlserializer/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "lib/netstandard1.3/System.Xml.XmlSerializer.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XmlSerializer.dll", + "ref/netcore50/System.Xml.XmlSerializer.xml", + "ref/netcore50/de/System.Xml.XmlSerializer.xml", + "ref/netcore50/es/System.Xml.XmlSerializer.xml", + "ref/netcore50/fr/System.Xml.XmlSerializer.xml", + "ref/netcore50/it/System.Xml.XmlSerializer.xml", + "ref/netcore50/ja/System.Xml.XmlSerializer.xml", + "ref/netcore50/ko/System.Xml.XmlSerializer.xml", + "ref/netcore50/ru/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/System.Xml.XmlSerializer.dll", + "ref/netstandard1.0/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/de/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/es/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/it/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/System.Xml.XmlSerializer.dll", + "ref/netstandard1.3/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/de/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/es/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/it/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "system.xml.xmlserializer.4.3.0.nupkg.sha512", + "system.xml.xmlserializer.nuspec" + ] + }, + "xunit/2.4.1-pre.build.4059": { + "sha512": "Kt50VVI9yqbPLPICi1J2Sl2zoidhyMqbT+ywCSINDDXCJhVOXVBoE/1geWui5Sppx8Cv5U0DmYCLxveaOB0mLw==", + "type": "package", + "path": "xunit/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "xunit.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.nuspec" + ] + }, + "xunit.abstractions/2.0.3": { + "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", + "type": "package", + "path": "xunit.abstractions/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/netstandard1.0/xunit.abstractions.dll", + "lib/netstandard1.0/xunit.abstractions.xml", + "lib/netstandard2.0/xunit.abstractions.dll", + "lib/netstandard2.0/xunit.abstractions.xml", + "xunit.abstractions.2.0.3.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.analyzers/0.10.0": { + "sha512": "4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg==", + "type": "package", + "path": "xunit.analyzers/0.10.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/xunit.analyzers.dll", + "tools/install.ps1", + "tools/uninstall.ps1", + "xunit.analyzers.0.10.0.nupkg.sha512", + "xunit.analyzers.nuspec" + ] + }, + "xunit.assert/2.4.1-pre.build.4059": { + "sha512": "PrfmhpgBTilGWP4DC6Q2FV17TEfTpnCARMjYNMQvUF1IFV5DhXNU5ChC0JeL17ctp89krn4Pld4/Wiuq4ILMxw==", + "type": "package", + "path": "xunit.assert/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.1/xunit.assert.dll", + "lib/netstandard1.1/xunit.assert.xml", + "lib/netstandard2.0/xunit.assert.dll", + "lib/netstandard2.0/xunit.assert.xml", + "xunit.assert.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.core/2.4.1-pre.build.4059": { + "sha512": "nQh89ZP+wmC79euBg5p/6Jr8rugPTQo/GAx9Wry2Pgu9q4ltDv9XeQTqsQE/trvqOjyrTRtCOQT1P+vcufj0Kg==", + "type": "package", + "path": "xunit.core/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/xunit.core.props", + "build/xunit.core.targets", + "buildMultiTargeting/xunit.core.props", + "buildMultiTargeting/xunit.core.targets", + "xunit.core.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.core.nuspec" + ] + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "sha512": "MpnCaHPR67FdYgdkbzuSIxtYdGJaY6WwjotyvifGKcy94M3Rm2eCQqKQsFSN1TbcRhHRCweOo24+E+wnGxjuTw==", + "type": "package", + "path": "xunit.extensibility.core/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/xunit.core.dll", + "lib/net452/xunit.core.dll.tdnet", + "lib/net452/xunit.core.xml", + "lib/net452/xunit.runner.tdnet.dll", + "lib/net452/xunit.runner.utility.net452.dll", + "lib/netstandard1.1/xunit.core.dll", + "lib/netstandard1.1/xunit.core.xml", + "lib/netstandard2.0/xunit.core.dll", + "lib/netstandard2.0/xunit.core.xml", + "xunit.extensibility.core.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "sha512": "sLmjOlIAAs4omfY/019PQMXWkxpxd/CfVnTEMBBEN89fU/bPfeoNRBjnqJ54tHpK2xDCPUye19PNSFH4aW6B8Q==", + "type": "package", + "path": "xunit.extensibility.execution/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/xunit.execution.desktop.dll", + "lib/net452/xunit.execution.desktop.xml", + "lib/netstandard1.1/xunit.execution.dotnet.dll", + "lib/netstandard1.1/xunit.execution.dotnet.xml", + "lib/netstandard2.0/xunit.execution.dotnet.dll", + "lib/netstandard2.0/xunit.execution.dotnet.xml", + "xunit.extensibility.execution.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "sha512": "FBASqurcvUoVQ52vY2LH4XUf1/Hkz9wmcuBj5IqIhEpgK+YjhWePepguSlpSre44hhhWNe5WO3XIrZ6pGTbyng==", + "type": "package", + "path": "xunit.performance.api/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.api.dll", + "lib/net461/xunit.performance.api.xml", + "lib/netstandard1.5/xunit.performance.api.dll", + "lib/netstandard1.5/xunit.performance.api.xml", + "xunit.performance.api.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.api.nuspec" + ] + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "sha512": "1CEv1zleRb8D0mDckZjpR8VPaP+2YSeMUAnnb/a3aL0DrG9IEeTN2Uu+30IaX/OHG7iuqLX9zWja+sey76Us0w==", + "type": "package", + "path": "xunit.performance.core/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/netstandard1.3/xunit.performance.core.dll", + "lib/netstandard1.3/xunit.performance.core.xml", + "xunit.performance.core.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.core.nuspec" + ] + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "sha512": "hfNLz/+fA1CqHPQWexPoQBDMs1y1x8gdy1WgQH1nUG5Jf1KVviUddy3+MCTEbuELyqrcLpkR/p57WLUAYKwhCw==", + "type": "package", + "path": "xunit.performance.execution/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.execution.dll", + "lib/net461/xunit.performance.execution.xml", + "lib/netstandard1.5/xunit.performance.execution.dll", + "lib/netstandard1.5/xunit.performance.execution.xml", + "xunit.performance.execution.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.execution.nuspec" + ] + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "sha512": "VWtijjK9HfQvx2nmQ15hEAtBdHEmWSVk0Gc60+yEF+xMq/wZmD0jSvCykW5Jz0ponX88Z6RU39ZjRDq+vLnCgg==", + "type": "package", + "path": "xunit.performance.metrics/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.metrics.dll", + "lib/net461/xunit.performance.metrics.xml", + "lib/netstandard1.5/xunit.performance.metrics.dll", + "lib/netstandard1.5/xunit.performance.metrics.xml", + "xunit.performance.metrics.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.metrics.nuspec" + ] + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "sha512": "oWTxKNZbtkn8HBHi59zxTRP4y80SlaOqFOu+ausTLOyOPr7/aZ39U6L9F8mh69890NRbW2Qcd/UdP3YvPsseHw==", + "type": "package", + "path": "xunit.runner.console/2.4.1-pre.build.4059", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/xunit.runner.console.props", + "tools/net452/xunit.abstractions.dll", + "tools/net452/xunit.console.exe", + "tools/net452/xunit.console.exe.config", + "tools/net452/xunit.console.x86.exe", + "tools/net452/xunit.console.x86.exe.config", + "tools/net452/xunit.runner.reporters.net452.dll", + "tools/net452/xunit.runner.utility.net452.dll", + "tools/net46/xunit.abstractions.dll", + "tools/net46/xunit.console.exe", + "tools/net46/xunit.console.exe.config", + "tools/net46/xunit.console.x86.exe", + "tools/net46/xunit.console.x86.exe.config", + "tools/net46/xunit.runner.reporters.net452.dll", + "tools/net46/xunit.runner.utility.net452.dll", + "tools/net461/xunit.abstractions.dll", + "tools/net461/xunit.console.exe", + "tools/net461/xunit.console.exe.config", + "tools/net461/xunit.console.x86.exe", + "tools/net461/xunit.console.x86.exe.config", + "tools/net461/xunit.runner.reporters.net452.dll", + "tools/net461/xunit.runner.utility.net452.dll", + "tools/net462/xunit.abstractions.dll", + "tools/net462/xunit.console.exe", + "tools/net462/xunit.console.exe.config", + "tools/net462/xunit.console.x86.exe", + "tools/net462/xunit.console.x86.exe.config", + "tools/net462/xunit.runner.reporters.net452.dll", + "tools/net462/xunit.runner.utility.net452.dll", + "tools/net47/xunit.abstractions.dll", + "tools/net47/xunit.console.exe", + "tools/net47/xunit.console.exe.config", + "tools/net47/xunit.console.x86.exe", + "tools/net47/xunit.console.x86.exe.config", + "tools/net47/xunit.runner.reporters.net452.dll", + "tools/net47/xunit.runner.utility.net452.dll", + "tools/net471/xunit.abstractions.dll", + "tools/net471/xunit.console.exe", + "tools/net471/xunit.console.exe.config", + "tools/net471/xunit.console.x86.exe", + "tools/net471/xunit.console.x86.exe.config", + "tools/net471/xunit.runner.reporters.net452.dll", + "tools/net471/xunit.runner.utility.net452.dll", + "tools/net472/xunit.abstractions.dll", + "tools/net472/xunit.console.exe", + "tools/net472/xunit.console.exe.config", + "tools/net472/xunit.console.x86.exe", + "tools/net472/xunit.console.x86.exe.config", + "tools/net472/xunit.runner.reporters.net452.dll", + "tools/net472/xunit.runner.utility.net452.dll", + "tools/netcoreapp1.0/xunit.abstractions.dll", + "tools/netcoreapp1.0/xunit.console.deps.json", + "tools/netcoreapp1.0/xunit.console.dll", + "tools/netcoreapp1.0/xunit.console.dll.config", + "tools/netcoreapp1.0/xunit.console.runtimeconfig.json", + "tools/netcoreapp1.0/xunit.runner.reporters.netcoreapp10.dll", + "tools/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll", + "tools/netcoreapp1.0/xunit.runner.utility.netcoreapp10.xml", + "tools/netcoreapp2.0/xunit.abstractions.dll", + "tools/netcoreapp2.0/xunit.console.deps.json", + "tools/netcoreapp2.0/xunit.console.dll", + "tools/netcoreapp2.0/xunit.console.dll.config", + "tools/netcoreapp2.0/xunit.console.runtimeconfig.json", + "tools/netcoreapp2.0/xunit.runner.reporters.netcoreapp10.dll", + "tools/netcoreapp2.0/xunit.runner.utility.netcoreapp10.dll", + "tools/netcoreapp2.0/xunit.runner.utility.netcoreapp10.xml", + "xunit.runner.console.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.runner.console.nuspec" + ] + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "sha512": "YyTcFxooSkYo9gr8HgLhHZ7T5PHjnCLC9dGXgbLwMCNZeqO+DzY8nWehE++FasEwMAlUv87MLhLEVXoVvMQtKQ==", + "type": "package", + "path": "xunit.runner.utility/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/xunit.runner.utility.net35.dll", + "lib/net35/xunit.runner.utility.net35.xml", + "lib/net452/xunit.runner.utility.net452.dll", + "lib/net452/xunit.runner.utility.net452.xml", + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll", + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.xml", + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll", + "lib/netstandard1.1/xunit.runner.utility.netstandard11.xml", + "lib/netstandard1.5/xunit.runner.utility.netstandard15.dll", + "lib/netstandard1.5/xunit.runner.utility.netstandard15.xml", + "lib/netstandard2.0/xunit.runner.utility.netstandard20.dll", + "lib/netstandard2.0/xunit.runner.utility.netstandard20.xml", + "lib/uap10.0/xunit.runner.utility.uwp10.dll", + "lib/uap10.0/xunit.runner.utility.uwp10.pri", + "lib/uap10.0/xunit.runner.utility.uwp10.xml", + "xunit.runner.utility.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + ".NETStandard,Version=v1.4": [ + "Microsoft.Diagnostics.Tracing.TraceEvent >= 2.0.43", + "Microsoft.NETCore.Platforms >= 3.1.0-preview3.19551.4", + "System.Collections.NonGeneric >= 4.4.0-beta-24913-02", + "System.Console >= 4.4.0-beta-24913-02", + "System.Diagnostics.Process >= 4.4.0-beta-24913-02", + "System.IO.FileSystem >= 4.4.0-beta-24913-02", + "System.Linq >= 4.4.0-beta-24913-02", + "System.Linq.Expressions >= 4.4.0-beta-24913-02", + "System.Linq.Parallel >= 4.4.0-beta-24913-02", + "System.Memory >= 4.5.2", + "System.Numerics.Vectors >= 4.5.0", + "System.Reflection >= 4.4.0-beta-24913-02", + "System.Reflection.Extensions >= 4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions >= 4.7.0-preview3.19551.4", + "System.Runtime >= 4.4.0-beta-24913-02", + "System.Runtime.CompilerServices.Unsafe >= 4.7.0-preview3.19551.4", + "System.Runtime.Extensions >= 4.4.0-beta-24913-02", + "System.Runtime.Numerics >= 4.4.0-beta-24913-02", + "System.Text.RegularExpressions >= 4.4.0-beta-24913-02", + "System.Threading >= 4.4.0-beta-24913-02", + "System.Threading.Tasks >= 4.4.0-beta-24913-02", + "System.Threading.Tasks.Parallel >= 4.4.0-beta-24913-02", + "System.Threading.Thread >= 4.4.0-beta-24913-02", + "System.Threading.ThreadPool >= 4.4.0-beta-24913-02", + "System.Xml.XmlDocument >= 4.4.0-beta-24913-02", + "xunit >= 2.4.1-pre.build.4059", + "xunit.performance.api >= 1.0.0-beta-build0015", + "xunit.performance.core >= 1.0.0-beta-build0015", + "xunit.performance.execution >= 1.0.0-beta-build0015", + "xunit.performance.metrics >= 1.0.0-beta-build0015", + "xunit.runner.console >= 2.4.1-pre.build.4059", + "xunit.runner.utility >= 2.4.1-pre.build.4059" + ] + }, + "packageFolders": { + "/home/z/Dev/coreclr-sec/.packages": {} + }, + "project": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark/benchmark.csproj", + "projectName": "benchmark", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark/benchmark.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/JIT/config/benchmark/obj-linux-x86", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netstandard1.4" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netstandard1.4": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netstandard1.4": { + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": { + "target": "Package", + "version": "[2.0.43, )" + }, + "Microsoft.NETCore.Platforms": { + "target": "Package", + "version": "[3.1.0-preview3.19551.4, )" + }, + "System.Collections.NonGeneric": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Console": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Diagnostics.Process": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.IO.FileSystem": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq.Expressions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq.Parallel": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Memory": { + "target": "Package", + "version": "[4.5.2, )" + }, + "System.Numerics.Vectors": { + "target": "Package", + "version": "[4.5.0, )" + }, + "System.Reflection": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.TypeExtensions": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Runtime": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.CompilerServices.Unsafe": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Runtime.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Numerics": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Text.RegularExpressions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Tasks": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Tasks.Parallel": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Thread": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.ThreadPool": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Xml.XmlDocument": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.performance.api": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.core": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.execution": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.metrics": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.runner.console": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.runner.utility": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x86": { + "#import": [] + } + } + }, + "logs": [ + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark -> System.Memory 4.5.2 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark -> System.Memory 4.5.2 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark -> System.Numerics.Vectors 4.5.0 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark -> System.Numerics.Vectors 4.5.0 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n benchmark -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n benchmark -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.4/linux-x86" + ] + } + ] +}
\ No newline at end of file diff --git a/tests/src/performance/obj-linux-x64/performance.csproj.nuget.cache b/tests/src/performance/obj-linux-x64/performance.csproj.nuget.cache new file mode 100644 index 0000000000..6235d47c25 --- /dev/null +++ b/tests/src/performance/obj-linux-x64/performance.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "9M9h6Ns26h0/HSW2JvXQCmplK9fMTKwnQffZ8pfNFeeqJIhCN+5uwc+qJvepfLPGH97HPCh+Vxeqai8fSX29Dg==", + "success": true +}
\ No newline at end of file diff --git a/tests/src/performance/obj-linux-x64/performance.csproj.nuget.dgspec.json b/tests/src/performance/obj-linux-x64/performance.csproj.nuget.dgspec.json new file mode 100644 index 0000000000..48ba6ad8a0 --- /dev/null +++ b/tests/src/performance/obj-linux-x64/performance.csproj.nuget.dgspec.json @@ -0,0 +1,181 @@ +{ + "format": 1, + "restore": { + "/home/z/Dev/coreclr-sec/tests/src/performance/performance.csproj": {} + }, + "projects": { + "/home/z/Dev/coreclr-sec/tests/src/performance/performance.csproj": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/performance/performance.csproj", + "projectName": "performance", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/performance/performance.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/performance/obj-linux-x64", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netstandard1.6" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netstandard1.6": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netstandard1.6": { + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": { + "target": "Package", + "version": "[2.0.43, )" + }, + "Microsoft.NETCore.Platforms": { + "target": "Package", + "version": "[3.1.0-preview3.19551.4, )" + }, + "System.Collections.NonGeneric": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Console": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Diagnostics.Process": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.IO.FileSystem": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq.Expressions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Numerics.Vectors": { + "target": "Package", + "version": "[4.5.0, )" + }, + "System.Reflection": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.TypeExtensions": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Runtime": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Loader": { + "target": "Package", + "version": "[4.0.0, )" + }, + "System.Runtime.Numerics": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Security.Principal.Windows": { + "target": "Package", + "version": "[4.4.0, )" + }, + "System.Text.RegularExpressions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Tasks": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Tasks.Parallel": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Thread": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Xml.XPath": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Xml.XPath.XmlDocument": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Xml.XmlDocument": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.performance.api": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.core": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.execution": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.metrics": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.runner.console": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.runner.utility": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x64": { + "#import": [] + } + } + } + } +}
\ No newline at end of file diff --git a/tests/src/performance/obj-linux-x64/performance.csproj.nuget.g.props b/tests/src/performance/obj-linux-x64/performance.csproj.nuget.g.props new file mode 100644 index 0000000000..e448de6ae4 --- /dev/null +++ b/tests/src/performance/obj-linux-x64/performance.csproj.nuget.g.props @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> + <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> + <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> + <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageRoot> + <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageFolders> + <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.4.0</NuGetToolVersion> + </PropertyGroup> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> + <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)/xunit.runner.console/2.4.1-pre.build.4059/build/xunit.runner.console.props" Condition="Exists('$(NuGetPackageRoot)/xunit.runner.console/2.4.1-pre.build.4059/build/xunit.runner.console.props')" /> + <Import Project="$(NuGetPackageRoot)/microsoft.diagnostics.tracing.traceevent/2.0.43/build/Microsoft.Diagnostics.Tracing.TraceEvent.props" Condition="Exists('$(NuGetPackageRoot)/microsoft.diagnostics.tracing.traceevent/2.0.43/build/Microsoft.Diagnostics.Tracing.TraceEvent.props')" /> + <Import Project="$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.props" Condition="Exists('$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.props')" /> + </ImportGroup> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Pkgxunit_runner_console Condition=" '$(Pkgxunit_runner_console)' == '' ">/home/z/Dev/coreclr-sec/.packages/xunit.runner.console/2.4.1-pre.build.4059</Pkgxunit_runner_console> + <Pkgxunit_analyzers Condition=" '$(Pkgxunit_analyzers)' == '' ">/home/z/Dev/coreclr-sec/.packages/xunit.analyzers/0.10.0</Pkgxunit_analyzers> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/performance/obj-linux-x64/performance.csproj.nuget.g.targets b/tests/src/performance/obj-linux-x64/performance.csproj.nuget.g.targets new file mode 100644 index 0000000000..96b54d803c --- /dev/null +++ b/tests/src/performance/obj-linux-x64/performance.csproj.nuget.g.targets @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> + <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.targets" Condition="Exists('$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.targets')" /> + </ImportGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/performance/obj-linux-x64/project.assets.json b/tests/src/performance/obj-linux-x64/project.assets.json new file mode 100644 index 0000000000..3100a99197 --- /dev/null +++ b/tests/src/performance/obj-linux-x64/project.assets.json @@ -0,0 +1,9480 @@ +{ + "version": 3, + "targets": { + ".NETStandard,Version=v1.6": { + "CommandLineParser/2.1.1-beta": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-24027", + "System.Console": "4.0.0-rc2-24027", + "System.Diagnostics.Debug": "4.0.11-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.IO": "4.1.0-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Linq.Expressions": "4.0.11-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Reflection.Extensions": "4.0.1-rc2-24027", + "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime": "4.1.0-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027" + }, + "compile": { + "lib/netstandard1.5/CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard1.5/CommandLine.dll": {} + } + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + } + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "type": "package", + "compile": { + "lib/netstandard1.6/Dia2Lib.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll": {}, + "lib/netstandard1.6/OSExtensions.dll": {}, + "lib/netstandard1.6/TraceReloggerLib.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Dia2Lib.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll": {}, + "lib/netstandard1.6/OSExtensions.dll": {}, + "lib/netstandard1.6/TraceReloggerLib.dll": {} + }, + "build": { + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.2.0-beta-24913-02": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Collections.Concurrent/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Console/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Process/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.Win32.Primitives": "4.4.0-beta-24913-02", + "Microsoft.Win32.Registry": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.Thread": "4.4.0-beta-24913-02", + "System.Threading.ThreadPool": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.4/System.Diagnostics.Process.dll": {} + }, + "runtimeTargets": { + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Globalization/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Linq": "4.4.0-beta-24913-02", + "System.ObjectModel": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Emit.Lightweight": "4.4.0-beta-24913-02", + "System.Reflection.Extensions": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "ref/netstandard1.0/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Numerics.Vectors.dll": {} + } + }, + "System.ObjectModel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Emit/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/portable45-net45+win8+wpa81/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp80+wpa81/_._": {} + } + }, + "System.Runtime.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime.Handles/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Loader/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} + }, + "runtime": { + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.Claims/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Security.Principal": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Principal/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.4.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Claims": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.RegularExpressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.6/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading.Tasks.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Thread/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.ValueTuple/4.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "System.Xml.ReaderWriter/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Text.RegularExpressions": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.Tasks.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} + } + }, + "System.Xml.XPath/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XPath.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.dll": {} + } + }, + "System.Xml.XPath.XmlDocument/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02", + "System.Xml.XPath": "4.4.0-beta-24913-02", + "System.Xml.XmlDocument": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} + } + }, + "xunit/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "[2.4.1-pre.build.4059]", + "xunit.core": "[2.4.1-pre.build.4059]" + } + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + } + }, + "xunit.analyzers/0.10.0": { + "type": "package" + }, + "xunit.assert/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.1/xunit.assert.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.assert.dll": {} + } + }, + "xunit.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.1-pre.build.4059]", + "xunit.extensibility.execution": "[2.4.1-pre.build.4059]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "[2.4.1-pre.build.4059]" + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + } + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "CommandLineParser": "2.1.1-beta", + "Microsoft.3rdpartytools.MarkdownLog": "0.10.0-alpha-experimental", + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.ValueTuple": "4.3.1", + "System.Xml.XmlSerializer": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015", + "xunit.performance.execution": "1.0.0-beta-build0015", + "xunit.performance.metrics": "1.0.0-beta-build0015", + "xunit.runner.utility": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + } + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + } + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit": "2.2.0-beta2-build3300", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + } + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Formatters": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + } + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "type": "package", + "build": { + "build/xunit.runner.console.props": {} + } + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.5/xunit.runner.utility.netstandard15.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.runner.utility.netstandard15.dll": {} + } + } + }, + ".NETStandard,Version=v1.6/linux-x64": { + "CommandLineParser/2.1.1-beta": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-24027", + "System.Console": "4.0.0-rc2-24027", + "System.Diagnostics.Debug": "4.0.11-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.IO": "4.1.0-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Linq.Expressions": "4.0.11-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Reflection.Extensions": "4.0.1-rc2-24027", + "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime": "4.1.0-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027" + }, + "compile": { + "lib/netstandard1.5/CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard1.5/CommandLine.dll": {} + } + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + } + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "type": "package", + "compile": { + "lib/netstandard1.6/Dia2Lib.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll": {}, + "lib/netstandard1.6/OSExtensions.dll": {}, + "lib/netstandard1.6/TraceReloggerLib.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Dia2Lib.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll": {}, + "lib/netstandard1.6/OSExtensions.dll": {}, + "lib/netstandard1.6/TraceReloggerLib.dll": {} + }, + "build": { + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.2.0-beta-24913-02": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.unix.Microsoft.Win32.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "runtime.any.System.Collections/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tools/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.Tools.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "runtime.any.System.Globalization/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.dll": {} + } + }, + "runtime.any.System.Globalization.Calendars/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "runtime.any.System.IO/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.IO.dll": {} + } + }, + "runtime.any.System.Reflection/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.dll": {} + } + }, + "runtime.any.System.Reflection.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Primitives.dll": {} + } + }, + "runtime.any.System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Resources.ResourceManager.dll": {} + } + }, + "runtime.any.System.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.dll": {} + } + }, + "runtime.any.System.Runtime.Handles/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "runtime.any.System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Runtime.InteropServices.dll": {} + } + }, + "runtime.any.System.Text.Encoding/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "runtime.any.System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "runtime.any.System.Threading.Tasks/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "runtime.any.System.Threading.Timer/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Timer.dll": {} + } + }, + "runtime.linux-x64.runtime.native.System/4.4.0-beta-24913-02": { + "type": "package", + "native": { + "runtimes/linux-x64/native/System.Native.a": {}, + "runtimes/linux-x64/native/System.Native.so": {} + } + }, + "runtime.linux-x64.runtime.native.System.IO.Compression/4.4.0-beta-24913-02": { + "type": "package", + "native": { + "runtimes/linux-x64/native/System.IO.Compression.Native.so": {} + } + }, + "runtime.linux-x64.runtime.native.System.Net.Http/4.4.0-beta-24913-02": { + "type": "package", + "native": { + "runtimes/linux-x64/native/System.Net.Http.Native.so": {} + } + }, + "runtime.linux-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.4.0-beta-24913-02": { + "type": "package", + "native": { + "runtimes/linux-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {} + } + }, + "runtime.native.System/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "runtime.linux-x64.runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.linux-x64.runtime.native.System.IO.Compression": "4.4.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.linux-x64.runtime.native.System.Net.Http": "4.4.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "runtime.linux-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.4.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package" + }, + "runtime.unix.Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.unix.System.Console/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Console.dll": {} + } + }, + "runtime.unix.System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.unix.System.IO.FileSystem/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Buffers": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "runtime.unix.System.Net.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "runtime.unix.System.Net.Sockets/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.Net.NameResolution": "4.4.0-beta-24913-02", + "System.Net.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.ThreadPool": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "runtime.unix.System.Private.Uri/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.0/System.Private.Uri.dll": {} + } + }, + "runtime.unix.System.Runtime.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Buffers.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Collections": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Collections.Concurrent/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Console/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "runtime.unix.System.Console": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.unix.System.Diagnostics.Debug": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Process/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.Win32.Primitives": "4.4.0-beta-24913-02", + "Microsoft.Win32.Registry": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.Thread": "4.4.0-beta-24913-02", + "System.Threading.ThreadPool": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.4/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Diagnostics.Tools": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Diagnostics.Tracing": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Globalization/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Globalization": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization.Calendars": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.any.System.IO": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {} + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.unix.System.IO.FileSystem": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Linq": "4.4.0-beta-24913-02", + "System.ObjectModel": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Emit.Lightweight": "4.4.0-beta-24913-02", + "System.Reflection.Extensions": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {} + } + }, + "System.Net.NameResolution/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Net.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Security.Principal.Windows": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {} + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.unix.System.Net.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.unix.System.Net.Sockets": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "ref/netstandard1.0/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Numerics.Vectors.dll": {} + } + }, + "System.ObjectModel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Private.Uri/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "runtime.unix.System.Private.Uri": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + } + }, + "System.Reflection/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Reflection": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Emit/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Reflection.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/portable45-net45+win8+wpa81/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Resources.ResourceManager": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "runtime.any.System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp80+wpa81/_._": {} + } + }, + "System.Runtime.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.unix.System.Runtime.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime.Handles/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Runtime.Handles": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "runtime.any.System.Runtime.InteropServices": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "System.Runtime.Loader/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} + }, + "runtime": { + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.Claims/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Security.Principal": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.4.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Claims": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Principal.Windows.dll": {} + } + }, + "System.Text.Encoding/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Text.Encoding": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "runtime.any.System.Text.Encoding.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.RegularExpressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.6/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading.Tasks.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Thread/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Threading.Timer": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.ValueTuple/4.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "System.Xml.ReaderWriter/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Text.RegularExpressions": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.Tasks.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} + } + }, + "System.Xml.XPath/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XPath.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.dll": {} + } + }, + "System.Xml.XPath.XmlDocument/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02", + "System.Xml.XPath": "4.4.0-beta-24913-02", + "System.Xml.XmlDocument": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} + } + }, + "xunit/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "[2.4.1-pre.build.4059]", + "xunit.core": "[2.4.1-pre.build.4059]" + } + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + } + }, + "xunit.analyzers/0.10.0": { + "type": "package" + }, + "xunit.assert/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.1/xunit.assert.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.assert.dll": {} + } + }, + "xunit.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.1-pre.build.4059]", + "xunit.extensibility.execution": "[2.4.1-pre.build.4059]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "[2.4.1-pre.build.4059]" + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + } + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "CommandLineParser": "2.1.1-beta", + "Microsoft.3rdpartytools.MarkdownLog": "0.10.0-alpha-experimental", + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.ValueTuple": "4.3.1", + "System.Xml.XmlSerializer": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015", + "xunit.performance.execution": "1.0.0-beta-build0015", + "xunit.performance.metrics": "1.0.0-beta-build0015", + "xunit.runner.utility": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + } + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + } + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit": "2.2.0-beta2-build3300", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + } + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Formatters": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + } + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "type": "package", + "build": { + "build/xunit.runner.console.props": {} + } + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.5/xunit.runner.utility.netstandard15.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.runner.utility.netstandard15.dll": {} + } + } + } + }, + "libraries": { + "CommandLineParser/2.1.1-beta": { + "sha512": "TmWNdtqLmtqLbwr0c9l1nEjjk39GB7wevl+1rxN907kjmdUUu5s470bWJFPEckfjYTnZ216xziW5fMXP35KVXg==", + "type": "package", + "path": "commandlineparser/2.1.1-beta", + "files": [ + ".nupkg.metadata", + "commandlineparser.2.1.1-beta.nupkg.sha512", + "commandlineparser.nuspec", + "lib/net40/CommandLine.XML", + "lib/net40/CommandLine.dll", + "lib/net45/CommandLine.XML", + "lib/net45/CommandLine.dll", + "lib/netstandard1.5/CommandLine.dll", + "lib/netstandard1.5/CommandLine.xml", + "readme.md" + ] + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "sha512": "BlzmPbwd0w2OGgXHFRWYu0tsJj6f6rAglvZ5q5hi71TGl6DDCZjP7WmMvcEFZi5MGGWkZ3VoPXQ4hJMMuGJF6A==", + "type": "package", + "path": "microsoft.3rdpartytools.markdownlog/0.10.0-alpha-experimental", + "files": [ + ".nupkg.metadata", + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll", + "microsoft.3rdpartytools.markdownlog.0.10.0-alpha-experimental.nupkg.sha512", + "microsoft.3rdpartytools.markdownlog.nuspec" + ] + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "sha512": "76ol4cZYvYiaiP5Vbows1ts2WDGpi/x2QxaoAToNCoGD+s2v7znzxPygPprXNYW4HmWgN8z3FsItIZb45X8OgQ==", + "type": "package", + "path": "microsoft.diagnostics.tracing.traceevent/2.0.43", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props", + "lib/native/amd64/KernelTraceControl.dll", + "lib/native/amd64/msdia140.dll", + "lib/native/x86/KernelTraceControl.Win61.dll", + "lib/native/x86/KernelTraceControl.dll", + "lib/native/x86/msdia140.dll", + "lib/net45/Dia2Lib.dll", + "lib/net45/Microsoft.Diagnostics.FastSerialization.dll", + "lib/net45/Microsoft.Diagnostics.FastSerialization.xml", + "lib/net45/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/net45/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/net45/OSExtensions.dll", + "lib/net45/TraceReloggerLib.dll", + "lib/netstandard1.6/Dia2Lib.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.xml", + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/netstandard1.6/OSExtensions.dll", + "lib/netstandard1.6/TraceReloggerLib.dll", + "lib/netstandard2.0/Dia2Lib.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.FastSerialization.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.FastSerialization.xml", + "lib/netstandard2.0/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/netstandard2.0/OSExtensions.dll", + "lib/netstandard2.0/TraceReloggerLib.dll", + "microsoft.diagnostics.tracing.traceevent.2.0.43.nupkg.sha512", + "microsoft.diagnostics.tracing.traceevent.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "sha512": "Clr2Jue6oyBlnsVf9g5qjoi06+QDYVq+U32buU9W+mRYeIFg4LXeJei1q6P/1niiKX8WIVo7KbBnqW80jVcOvw==", + "type": "package", + "path": "microsoft.netcore.platforms/3.1.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.3.1.0-preview3.19551.4.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.2.0-beta-24913-02": { + "sha512": "Z76BzrF4Nz0qVN676Tlmk3GdRxvlFDQZF6FoBRcfIkpEd07H4JLkuqryqTlbQ30X3XXUzAtsImuI2yW9eYb55g==", + "type": "package", + "path": "microsoft.netcore.targets/1.2.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.2.0-beta-24913-02.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "sha512": "gPGph68msdAFoQB9Emn9zxxR7Igg58Nm76zgI4UAFJINBPPsrCHxfXTsJY4qhsnecahDw609V+TAL8tS32XaDg==", + "type": "package", + "path": "microsoft.win32.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/net463/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/net463/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.7/Microsoft.Win32.Primitives.dll", + "ref/uap10.1/Microsoft.Win32.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.Registry/4.4.0-beta-24913-02": { + "sha512": "XpKuSucbIipPi5XzUftawczAHaE2eeQFVNRDk951HNmYhaeAlm1qoNY5yGyepFnZUlkkttolrd/nU1ePvhIyEw==", + "type": "package", + "path": "microsoft.win32.registry/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net463/Microsoft.Win32.Registry.dll", + "microsoft.win32.registry.4.4.0-beta-24913-02.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net463/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard1.7/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard1.7/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net463/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard1.7/Microsoft.Win32.Registry.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "runtime.any.System.Collections/4.4.0-beta-24913-02": { + "sha512": "F2g9ysPsUdvdzg7PusjRSfO9lCYa8hAR2TxoT+WaJ3RqCjZUmrwzFRk6mkBVhb/jqoku1wh+DjkiVws4T/iI3A==", + "type": "package", + "path": "runtime.any.system.collections/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.dll", + "lib/netstandard1.3/System.Collections.dll", + "lib/netstandard1.7/System.Collections.dll", + "lib/uap10.1/System.Collections.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.collections.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.collections.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Collections.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Diagnostics.Tools/4.4.0-beta-24913-02": { + "sha512": "q9ex5GZda4qQWulQXw0mXxUpzYsIXA+fJsduZ4+76rFfkCTCAYnFqLg3pq1++oRe5utNE55kAWCXnPEfBjhgEw==", + "type": "package", + "path": "runtime.any.system.diagnostics.tools/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/netstandard1.3/System.Diagnostics.Tools.dll", + "lib/netstandard1.7/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tools.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.diagnostics.tools.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "sha512": "Eb5yKhR992tpieQ3k2U0Mmu7SzGodlBz7pPY4vVxrmLgO+t6bwye0Bw6+tcqO05gN3kDH47C/CKyh+ta41ULdw==", + "type": "package", + "path": "runtime.any.system.diagnostics.tracing/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "lib/netstandard1.5/System.Diagnostics.Tracing.dll", + "lib/netstandard1.7/System.Diagnostics.Tracing.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tracing.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.diagnostics.tracing.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Globalization/4.4.0-beta-24913-02": { + "sha512": "szVxxBBn8e+UDwJ+lg9C+XPSjvifllUzLuGrwhM9xPKdQUjJMrxd23yG49n0XM3q+pSIrOoHwLgWf3QDmt4PKw==", + "type": "package", + "path": "runtime.any.system.globalization/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Globalization.dll", + "lib/netstandard1.3/System.Globalization.dll", + "lib/netstandard1.7/System.Globalization.dll", + "lib/uap10.1/System.Globalization.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.globalization.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/aot/lib/uap101/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Globalization.Calendars/4.4.0-beta-24913-02": { + "sha512": "f+dLksC+5rTLnXj5ILLvAmrhvfuklzN3ba9g5O8hmbZd8zvSELF2FSw+GXbWsgqXEtjvgs4LvvH0UHkYm4nigA==", + "type": "package", + "path": "runtime.any.system.globalization.calendars/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net/_._", + "lib/netcore50/System.Globalization.Calendars.dll", + "lib/netstandard1.3/System.Globalization.Calendars.dll", + "lib/netstandard1.7/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.calendars.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.globalization.calendars.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.IO/4.4.0-beta-24913-02": { + "sha512": "jr+a+OUh/h6BIO/N+SXMDVbUln6dJIEPw/Ffaqj6aq+HmjMK1sr/aP6jw6sWRUU5hi91ppd3VMQ0xyk7Z3qBbA==", + "type": "package", + "path": "runtime.any.system.io/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.IO.dll", + "lib/netstandard1.5/System.IO.dll", + "lib/netstandard1.7/System.IO.dll", + "lib/uap10.1/System.IO.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.io.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.io.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Reflection/4.4.0-beta-24913-02": { + "sha512": "3kbe1bVviwUdBK5fN5O0646ZvpSMwMNl0uB68nf1aH9LA9EQo/xDwAbRmqbhY1wbN4ydH8PhsI2H9YNrnmRIRQ==", + "type": "package", + "path": "runtime.any.system.reflection/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.dll", + "lib/netstandard1.5/System.Reflection.dll", + "lib/netstandard1.7/System.Reflection.dll", + "lib/uap10.1/System.Reflection.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.reflection.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Reflection.Primitives/4.4.0-beta-24913-02": { + "sha512": "dEDCNyC3/P1Cl3+z5Gqhe6NZ20slv2biVjq1p8VInY9ETQTzK3QYBESPXkBlLgqG4xX+AXHIoEzWChXmj1KCYg==", + "type": "package", + "path": "runtime.any.system.reflection.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/netstandard1.3/System.Reflection.Primitives.dll", + "lib/netstandard1.7/System.Reflection.Primitives.dll", + "lib/portable45-net45+win8+wp8+wpa81/_._", + "lib/portable45-net45+win8+wpa81/_._", + "lib/uap10.1/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.reflection.primitives.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Reflection.Primitives.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "sha512": "oPqDrDykaRm+drr+dDXAveefrhawetYPTOETO84M2XeZsdgVR1YATecZun7PbbgUnSgvTR6UviiTnffEYIaIUg==", + "type": "package", + "path": "runtime.any.system.resources.resourcemanager/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/netstandard1.3/System.Resources.ResourceManager.dll", + "lib/netstandard1.7/System.Resources.ResourceManager.dll", + "lib/uap10.1/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.resources.resourcemanager.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.resources.resourcemanager.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Runtime/4.4.0-beta-24913-02": { + "sha512": "WszqTsye25+HP+UHSbqW5zW4khkQGA4fE9T/ZbPwzjA8t7+H7kc6RZEEaw3NmNBHVPCPQ2/rPs+DuVr2ely9dQ==", + "type": "package", + "path": "runtime.any.system.runtime/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.dll", + "lib/netcoreapp1.2/System.Runtime.dll", + "lib/netstandard1.5/System.Runtime.dll", + "lib/netstandard1.7/System.Runtime.dll", + "lib/uap10.1/System.Runtime.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.runtime.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Runtime.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Runtime.Handles/4.4.0-beta-24913-02": { + "sha512": "QVZWjaAvR/fAnWQ84CIfOL1bP3sROghLXJV2TVOrCSy3nGbKe8R0hJMMSiYRZ1cJSPFkXCR4ov9Giq2UWhap2w==", + "type": "package", + "path": "runtime.any.system.runtime.handles/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netstandard1.3/System.Runtime.Handles.dll", + "lib/netstandard1.7/System.Runtime.Handles.dll", + "lib/uap10.1/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.handles.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.runtime.handles.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "sha512": "fQhiPiPdc2MvT1Ly8qNhXXRhtOn80nxI7zN/Rzqa+kUBETdJzivUhs2KfaMA6CeArM0HlCZr9nkb5jPe3QSy0A==", + "type": "package", + "path": "runtime.any.system.runtime.interopservices/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "lib/netstandard1.5/System.Runtime.InteropServices.dll", + "lib/netstandard1.6/System.Runtime.InteropServices.dll", + "lib/netstandard1.7/System.Runtime.InteropServices.dll", + "lib/uap10.1/System.Runtime.InteropServices.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.interopservices.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.runtime.interopservices.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Runtime.InteropServices.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Text.Encoding/4.4.0-beta-24913-02": { + "sha512": "Xeqwi4XTKzoU787kjWuFmad+InOs+3GFQt7jYgTvZescP/O1QPOpXo2OBdohyM+G7krDarJufdl4S7fNvhWacQ==", + "type": "package", + "path": "runtime.any.system.text.encoding/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/netstandard1.3/System.Text.Encoding.dll", + "lib/netstandard1.7/System.Text.Encoding.dll", + "lib/uap10.1/System.Text.Encoding.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.text.encoding.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "sha512": "x32Af805w4cweMs7FNZCXHe/k2twQFE9l0/siz7P86e4PhHz6wc4BJ6I8AR3kxqBwtgSF7QPnLhN1yNxem8/MA==", + "type": "package", + "path": "runtime.any.system.text.encoding.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll", + "lib/netstandard1.7/System.Text.Encoding.Extensions.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.text.encoding.extensions.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Threading.Tasks/4.4.0-beta-24913-02": { + "sha512": "WfTJsPBqnWM3ba8Ua9xehHQbJW+RwcAu9LCWXuMhQAmsxssz15uycggqRdsS6hb2dRkZS9Jz3dtu3ns6Q7M2qw==", + "type": "package", + "path": "runtime.any.system.threading.tasks/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/netstandard1.3/System.Threading.Tasks.dll", + "lib/netstandard1.7/System.Threading.Tasks.dll", + "lib/uap10.1/System.Threading.Tasks.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.tasks.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.threading.tasks.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Threading.Tasks.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Threading.Timer/4.4.0-beta-24913-02": { + "sha512": "+IDpQUBdCovPqrD9tV2OlluOc+CNsDSs8GJ5WVa/ZBXCeVGX2qwZKO8a3nwnc81SpxO1zGlMo/Y2m6K0pDPnKQ==", + "type": "package", + "path": "runtime.any.system.threading.timer/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/netstandard1.3/System.Threading.Timer.dll", + "lib/netstandard1.7/System.Threading.Timer.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.timer.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.threading.timer.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.linux-x64.runtime.native.System/4.4.0-beta-24913-02": { + "sha512": "sssCMcBrty+rIkiBdaVoFN1c0llOnwW5ZFvj7PYomc0SZtsJXIZWruFeYCRmkT+qrcdjIJRyEPs0gQFwVkherg==", + "type": "package", + "path": "runtime.linux-x64.runtime.native.system/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.linux-x64.runtime.native.system.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.linux-x64.runtime.native.system.nuspec", + "runtimes/linux-x64/native/System.Native.a", + "runtimes/linux-x64/native/System.Native.so", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.linux-x64.runtime.native.System.IO.Compression/4.4.0-beta-24913-02": { + "sha512": "c56L47xwZfrqMp47oZ0Z6Nx+prd+maS1V8kRQEQnZfkis9T/aF+wM9+bXEDgS2/gl38BxZHD40jTOWeoHVVHSA==", + "type": "package", + "path": "runtime.linux-x64.runtime.native.system.io.compression/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.linux-x64.runtime.native.system.io.compression.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.linux-x64.runtime.native.system.io.compression.nuspec", + "runtimes/linux-x64/native/System.IO.Compression.Native.so", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.linux-x64.runtime.native.System.Net.Http/4.4.0-beta-24913-02": { + "sha512": "JYjTphZMsFrxI+CqXzq8zS0VARVKBJFUTEdRO++o2tpni6sqESGYglWh3RvH7UzmnRkUbz6YviBXvXGOc/iJMA==", + "type": "package", + "path": "runtime.linux-x64.runtime.native.system.net.http/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.linux-x64.runtime.native.system.net.http.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.linux-x64.runtime.native.system.net.http.nuspec", + "runtimes/linux-x64/native/System.Net.Http.Native.so", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.linux-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.4.0-beta-24913-02": { + "sha512": "HoSRBeHtdskdLmj0pVuNu49Ud0Zk489TDO65lH7KDygXic9yxEhug2peeZmpiZYjieZpFrisSq+7kk9YDNDLxQ==", + "type": "package", + "path": "runtime.linux-x64.runtime.native.system.security.cryptography.openssl/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.linux-x64.runtime.native.system.security.cryptography.openssl.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.linux-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/linux-x64/native/System.Security.Cryptography.Native.OpenSsl.so", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.native.System/4.4.0-beta-24913-02": { + "sha512": "DtEYKhWPpIDQlWxyIWBiUK7Q3H2kPxVNLuOccIJY17tS1I4b0ya5FVc6WVj47Zg3SUvFuJhZzM7EqZsl5c4RWA==", + "type": "package", + "path": "runtime.native.system/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.native.system.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.4.0-beta-24913-02": { + "sha512": "J9TS90larMk0sgXUZQceCtbLzuYm3wHud/qBTLGYC5Yd6ntuZCifJxQd7QhM5jykR2u06aPCkKiv9bodz16tyw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.unix.Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "sha512": "ErIf7An6edPAgcSJcLZAYH8KEr2Aqi2H47K860JKyXLnwK0G047ksS8VtVg0v9z2cs3p+YTLTDD6dFLbg3RLpg==", + "type": "package", + "path": "runtime.unix.microsoft.win32.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.microsoft.win32.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.microsoft.win32.primitives.nuspec", + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Primitives.dll", + "runtimes/unix/lib/netstandard1.7/Microsoft.Win32.Primitives.dll", + "runtimes/unix/lib/uap10.1/Microsoft.Win32.Primitives.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Console/4.4.0-beta-24913-02": { + "sha512": "bVyMROOfEqc/7fRDnearZ6Jpeq/Psc+EFe/srfRQeVuFLMXT6cxaCvUk+4gHJisdSZQCleIdlIy4VoS/Tdvs7w==", + "type": "package", + "path": "runtime.unix.system.console/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.console.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.console.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Console.dll", + "runtimes/unix/lib/netstandard1.7/System.Console.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "sha512": "M95VkuwoXStqkCny6RJK1pECnFevEqkrvlDjyouEUXJneIB4qSH0LHH9rfrmhQosE+Z5m3KQIh1wCGneZ932Zg==", + "type": "package", + "path": "runtime.unix.system.diagnostics.debug/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.diagnostics.debug.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.diagnostics.debug.nuspec", + "runtimes/unix-corert/lib/netcoreapp1.2/System.Diagnostics.Debug.dll", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.Debug.dll", + "runtimes/unix/lib/netstandard1.7/System.Diagnostics.Debug.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.IO.FileSystem/4.4.0-beta-24913-02": { + "sha512": "4E0WH3D3D7uAHImAj3zQBRuYHSfUrCvdyv75+TuvTLw6RKPtoBR8Jq0mVAXIqshvrUfHCyBzv+cn5oY2BrBSRA==", + "type": "package", + "path": "runtime.unix.system.io.filesystem/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.io.filesystem.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.io.filesystem.nuspec", + "runtimes/unix/lib/netstandard1.3/System.IO.FileSystem.dll", + "runtimes/unix/lib/netstandard1.7/System.IO.FileSystem.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Net.Primitives/4.4.0-beta-24913-02": { + "sha512": "DBOmYuPH4khZftILHrquXZTda5PiTaBsWejwwtYtZsvUPZtF0nYmsjbCrOycbGWzS4gFZoU6vqD4dMbku4/ZEg==", + "type": "package", + "path": "runtime.unix.system.net.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.net.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.net.primitives.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Net.Primitives.dll", + "runtimes/unix/lib/netstandard1.7/System.Net.Primitives.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Net.Sockets/4.4.0-beta-24913-02": { + "sha512": "vl7Lz6dnOa+xi/WUUsZ1G3TFhroPkPrWKWVSUGg9E6mGcK5m2VqCbqcWwneYehgallbBMLOEmL7nsq+1XXCGWQ==", + "type": "package", + "path": "runtime.unix.system.net.sockets/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.net.sockets.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.net.sockets.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Net.Sockets.dll", + "runtimes/unix/lib/netstandard1.7/System.Net.Sockets.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Private.Uri/4.4.0-beta-24913-02": { + "sha512": "CM/S/SEyzccTOXKa+HAnUpAKlqspZRgfYbEQWKxTpm3iljXcj5aWuoaZFAav3Rts34FS6A7m+zCUgJeRKFGzPQ==", + "type": "package", + "path": "runtime.unix.system.private.uri/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.private.uri.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.private.uri.nuspec", + "runtimes/unix-corert/lib/netcoreapp1.2/System.Private.Uri.dll", + "runtimes/unix/lib/netstandard1.0/System.Private.Uri.dll", + "runtimes/unix/lib/uap10.1/System.Private.Uri.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Runtime.Extensions/4.4.0-beta-24913-02": { + "sha512": "SbmnGceBoHRqOLVdRdgdOd9UKizKVmwlBpbww67Hju5rUbMdOv4AdkoHrFm+Ee7kO0xHumYHlTuenmXmuFRW4Q==", + "type": "package", + "path": "runtime.unix.system.runtime.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.runtime.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.runtime.extensions.nuspec", + "runtimes/unix-corert/lib/netcoreapp1.2/System.Runtime.Extensions.dll", + "runtimes/unix/lib/netstandard1.5/System.Runtime.Extensions.dll", + "runtimes/unix/lib/netstandard1.7/System.Runtime.Extensions.dll", + "runtimes/unix/lib/uap10.1/System.Runtime.Extensions.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.3.0": { + "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "type": "package", + "path": "system.buffers/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/.xml", + "lib/netstandard1.1/System.Buffers.dll", + "system.buffers.4.3.0.nupkg.sha512", + "system.buffers.nuspec" + ] + }, + "System.Buffers/4.4.0-beta-24913-02": { + "sha512": "759YUTLvoV/0Y8oIp+yiPruR79AB+g5q+DqhDfNBjX1UxG7mAiemru5zEKMHEUBmj19nuDpwO1VXeFw/LfqYjw==", + "type": "package", + "path": "system.buffers/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netcoreapp1.1/.xml", + "lib/netcoreapp1.1/System.Buffers.dll", + "lib/netstandard1.1/.xml", + "lib/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.dll", + "system.buffers.4.4.0-beta-24913-02.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.4.0-beta-24913-02": { + "sha512": "Y9+bO37c8uVvXqkNGm90t2geVYeaEkWjMTgOkq6CkOOAtF5BpqKTvwnelXWP2pmL5fSqAMvPhsN/UXkTTxgMRA==", + "type": "package", + "path": "system.collections/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Collections.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Collections.dll", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netcoreapp1.1/System.Collections.dll", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/netstandard1.7/System.Collections.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Collections.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.4.0-beta-24913-02.nupkg.sha512", + "system.collections.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections.Concurrent/4.4.0-beta-24913-02": { + "sha512": "eky+QV4xCtubhbJk62uICQ4iygDnhoU7ojHRZbog5bqhjGWHtzvLdLu9nBu7YPKh7GDzk2ZHfL9uNECo8kKcdA==", + "type": "package", + "path": "system.collections.concurrent/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/netstandard1.7/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netcoreapp1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.4.0-beta-24913-02.nupkg.sha512", + "system.collections.concurrent.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections.NonGeneric/4.4.0-beta-24913-02": { + "sha512": "VEhSZSDYNv1aJieXt4O4grrHspFZAw+4XT7PsJwnitqYjYDNT8tiBj2ALtEt7U/Jx2tf86wHDqdnKYqlvLLqog==", + "type": "package", + "path": "system.collections.nongeneric/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/net463/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", + "lib/netstandard1.7/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/net463/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/netstandard1.7/System.Collections.NonGeneric.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.4.0-beta-24913-02.nupkg.sha512", + "system.collections.nongeneric.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Console/4.4.0-beta-24913-02": { + "sha512": "AiRso5v4Rbn6JgfRevPTZ0q+bpkfuAGQtkk4Aiuu+np3c4mEdHrW/ippOuSmIQJmvyHVEg9TQxpjrjcZUhLvkw==", + "type": "package", + "path": "system.console/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/net463/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/net463/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/netstandard1.7/System.Console.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.4.0-beta-24913-02.nupkg.sha512", + "system.console.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "sha512": "1JrMoPGopozBemABZVZvaXpPjXPqboGsxyZE+r8iuaJuU6nCVpxIvZf9LTkDZdXvdzA6UN8gNyo5JVkTpDRrtQ==", + "type": "package", + "path": "system.diagnostics.debug/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Diagnostics.Debug.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.7/System.Diagnostics.Debug.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net463/System.Diagnostics.Debug.dll", + "system.diagnostics.debug.4.4.0-beta-24913-02.nupkg.sha512", + "system.diagnostics.debug.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec" + ] + }, + "System.Diagnostics.Process/4.4.0-beta-24913-02": { + "sha512": "Wi29/vAxe1W8J8IVa9Snd5RLWFJkvRUsNW1l3n6N/7vb0thD9GHtW3bdZVk+IpudHUrvXaZc7PmVFAGu0CbMTA==", + "type": "package", + "path": "system.diagnostics.process/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.Process.dll", + "lib/net461/System.Diagnostics.Process.dll", + "lib/net463/System.Diagnostics.Process.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.Process.dll", + "ref/net461/System.Diagnostics.Process.dll", + "ref/net463/System.Diagnostics.Process.dll", + "ref/netstandard1.3/System.Diagnostics.Process.dll", + "ref/netstandard1.3/System.Diagnostics.Process.xml", + "ref/netstandard1.3/de/System.Diagnostics.Process.xml", + "ref/netstandard1.3/es/System.Diagnostics.Process.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Process.xml", + "ref/netstandard1.3/it/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Process.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Process.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Process.xml", + "ref/netstandard1.4/System.Diagnostics.Process.dll", + "ref/netstandard1.4/System.Diagnostics.Process.xml", + "ref/netstandard1.4/de/System.Diagnostics.Process.xml", + "ref/netstandard1.4/es/System.Diagnostics.Process.xml", + "ref/netstandard1.4/fr/System.Diagnostics.Process.xml", + "ref/netstandard1.4/it/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ja/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ko/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ru/System.Diagnostics.Process.xml", + "ref/netstandard1.4/zh-hans/System.Diagnostics.Process.xml", + "ref/netstandard1.4/zh-hant/System.Diagnostics.Process.xml", + "ref/netstandard1.7/System.Diagnostics.Process.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/linux/lib/netstandard1.7/System.Diagnostics.Process.dll", + "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/osx/lib/netstandard1.7/System.Diagnostics.Process.dll", + "runtimes/win/lib/net46/System.Diagnostics.Process.dll", + "runtimes/win/lib/net461/System.Diagnostics.Process.dll", + "runtimes/win/lib/net463/System.Diagnostics.Process.dll", + "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/win/lib/netstandard1.7/System.Diagnostics.Process.dll", + "runtimes/win7/lib/netcore50/_._", + "system.diagnostics.process.4.4.0-beta-24913-02.nupkg.sha512", + "system.diagnostics.process.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "sha512": "dupkxZ5nLUDX8e9OqQ1XqPJM54UZo3XGRiFeqdF/a59R90KbVSmmhqT4RPwa92fi4Unr401DQXMDBEVLLmJo9w==", + "type": "package", + "path": "system.diagnostics.tracing/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.7/System.Diagnostics.Tracing.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.4.0-beta-24913-02.nupkg.sha512", + "system.diagnostics.tracing.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Globalization/4.4.0-beta-24913-02": { + "sha512": "KxBYuqGY1P0LBAn1uXLyiYf3qXiNlhDCfCtLBemYA7mouGqqs+YPgYo2WuI5pqGU6VjAWiQvAT6PeNhofDvTHw==", + "type": "package", + "path": "system.globalization/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Globalization.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Globalization.dll", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/netstandard1.7/System.Globalization.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Globalization.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.4.0-beta-24913-02.nupkg.sha512", + "system.globalization.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IO/4.4.0-beta-24913-02": { + "sha512": "BEqLHSTjhsWFdxz0q5OYlFc2Ic7NcWbKrn13IulLnRpF9yJClv3W2CxSHPq2IB48qKvODoYO9wEKax74+JK8eg==", + "type": "package", + "path": "system.io/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netcoreapp1.1/System.IO.dll", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/netstandard1.7/System.IO.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.IO.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.4.0-beta-24913-02.nupkg.sha512", + "system.io.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.4.0-beta-24913-02": { + "sha512": "DvhfpfWgOwoxyjPNYKhMV0xZuqGdznnaC7aIMzBc2oh+u19jZrloGl11P2DnFKJLfsth5DPLvTMxXmvKLeuykw==", + "type": "package", + "path": "system.io.filesystem/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/net463/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/net463/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/netstandard1.7/System.IO.FileSystem.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.4.0-beta-24913-02.nupkg.sha512", + "system.io.filesystem.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.FileSystem.Primitives/4.4.0-beta-24913-02": { + "sha512": "wRiqs3kiUczfE2pBubg2o3u06yQeUeqZruZG8ckw5/QJHRMCcnSaf//dyhJs+Qnq7uOYVoI2p8rEnYjm6w9omw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/net463/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.7/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/net463/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.7/System.IO.FileSystem.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "system.io.filesystem.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq/4.4.0-beta-24913-02": { + "sha512": "bjnCiY6U3f9k7fH/R3IQohZniRlLB3MdQ59n0nH8oa26YCFZO+OgjdVbSj67RgVpxupYLzXCZ80li32HcL4qdQ==", + "type": "package", + "path": "system.linq/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netcoreapp1.1/System.Linq.dll", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.4.0-beta-24913-02.nupkg.sha512", + "system.linq.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq.Expressions/4.4.0-beta-24913-02": { + "sha512": "FGRSqzfppwrXJSO+91Bi3BEOV1xejk/VHOL3bZRJYCshZ67t8s5OeOk8ywh96Xi12+RFIsXkIzJYBBYC3xV/ow==", + "type": "package", + "path": "system.linq.expressions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/netstandard1.7/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.7/System.Linq.Expressions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.4.0-beta-24913-02.nupkg.sha512", + "system.linq.expressions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.NameResolution/4.4.0-beta-24913-02": { + "sha512": "xTSaAEadOMDmmGLv60VMP1GtqMq++l23ld96Rg3X/Sphde1FFLB9nUetcoWx7VwfC5sJ1m70YprLKXDS4PNG8A==", + "type": "package", + "path": "system.net.nameresolution/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.NameResolution.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.xml", + "ref/netstandard1.3/de/System.Net.NameResolution.xml", + "ref/netstandard1.3/es/System.Net.NameResolution.xml", + "ref/netstandard1.3/fr/System.Net.NameResolution.xml", + "ref/netstandard1.3/it/System.Net.NameResolution.xml", + "ref/netstandard1.3/ja/System.Net.NameResolution.xml", + "ref/netstandard1.3/ko/System.Net.NameResolution.xml", + "ref/netstandard1.3/ru/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", + "runtimes/win/lib/net46/System.Net.NameResolution.dll", + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll", + "system.net.nameresolution.4.4.0-beta-24913-02.nupkg.sha512", + "system.net.nameresolution.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.Numerics.Vectors/4.5.0": { + "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "type": "package", + "path": "system.numerics.vectors/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/netstandard2.0/System.Numerics.Vectors.dll", + "lib/netstandard2.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.Numerics.Vectors.dll", + "ref/net45/System.Numerics.Vectors.xml", + "ref/net46/System.Numerics.Vectors.dll", + "ref/net46/System.Numerics.Vectors.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", + "ref/netstandard2.0/System.Numerics.Vectors.dll", + "ref/netstandard2.0/System.Numerics.Vectors.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.numerics.vectors.4.5.0.nupkg.sha512", + "system.numerics.vectors.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ObjectModel/4.4.0-beta-24913-02": { + "sha512": "7fImkhTugA/dsFg/prA4UH7CoP4xmf7Brd5/v+dUA62mND9foQQnTOq0xSCOVZ6b25sy0kKqxLUtekZvRIMlkQ==", + "type": "package", + "path": "system.objectmodel/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.ObjectModel.dll", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/netstandard1.7/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netcoreapp1.1/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.7/System.ObjectModel.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.4.0-beta-24913-02.nupkg.sha512", + "system.objectmodel.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Private.Uri/4.4.0-beta-24913-02": { + "sha512": "P5WV/+fFObWRGhcbiUIx+23/hz4k/x6xFoePjam1t6xvKw+E1E4KkM8O2sRkZQ0h8i7ATr04oCi5jNnzg2+idg==", + "type": "package", + "path": "system.private.uri/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "system.private.uri.4.4.0-beta-24913-02.nupkg.sha512", + "system.private.uri.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection/4.4.0-beta-24913-02": { + "sha512": "BYjVZSHD4JDmhn5LueNSF16qU8WA6V2YAakX+q+U9lAlj/B+gV+l9vO2RkJjzexvDcZLluFzIUdpWDGtOj95wA==", + "type": "package", + "path": "system.reflection/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/netstandard1.7/System.Reflection.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Reflection.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit/4.4.0-beta-24913-02": { + "sha512": "8t9c/WJwVW4lM4furhRKIGDH4YIMnqWeo/tXktHJpczi6SiBpWfi+RymwRVbbxrPy7+b+jgtspwM0AHizm8hRg==", + "type": "package", + "path": "system.reflection.emit/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.emit.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit.ILGeneration/4.4.0-beta-24913-02": { + "sha512": "StjC21V2SztX1QUCMlwE1QfXXJhmmNJVu07DDLqj/fn6F23tIHB+EDcroeA7QKRQbfarUxL4MzZAJqEhcfPqYA==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit.Lightweight/4.4.0-beta-24913-02": { + "sha512": "qK7GukxWqkcU5tG7YLLLZdAvaDsAFk6Kp6sXd4Cxpm8jcoHNzCPV48dZMx64TczZHtbedHwwkYJe5JKTHnGcKA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Extensions/4.4.0-beta-24913-02": { + "sha512": "6f9M3xv5HkaZEbZLsjRSEHekr1bbEFUbtpr/8NHGJ3cwjdUmfirIwT3i69VxPy0xx9nj8OLbfGitQcPOUsK/sA==", + "type": "package", + "path": "system.reflection.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Reflection.Extensions.dll", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/netstandard1.3/System.Reflection.Extensions.dll", + "lib/netstandard1.7/System.Reflection.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.1/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.7/System.Reflection.Extensions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Reflection.Extensions.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll", + "runtimes/aot/lib/uap10.1/System.Reflection.Extensions.dll", + "system.reflection.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Primitives/4.4.0-beta-24913-02": { + "sha512": "qR0QeMteCI5xqH473N019aiA3kSrUYIsxHb5yD8EMeEY9ZQpDe7eETxaxm9mDtZsk5ykm3fboDda8cAsHqM5+w==", + "type": "package", + "path": "system.reflection.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Reflection.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/portable45-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.7/System.Reflection.Primitives.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/portable45-net45+win8+wpa81/_._", + "ref/uap10.1/System.Reflection.Primitives.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.TypeExtensions/4.7.0-preview3.19551.4": { + "sha512": "PYxuzuBiOLVfZLE40zmzvpJx4NBNMAFBLIKTq5FSRtHjpBK9JzmtuWylHVv9L2sp62Aux4bA7w/Ma/Q+4u8+pA==", + "type": "package", + "path": "system.reflection.typeextensions/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net461/System.Reflection.TypeExtensions.dll", + "lib/net461/System.Reflection.TypeExtensions.xml", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netcoreapp1.0/System.Reflection.TypeExtensions.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.3/System.Reflection.TypeExtensions.xml", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.xml", + "lib/netstandard2.0/System.Reflection.TypeExtensions.dll", + "lib/netstandard2.0/System.Reflection.TypeExtensions.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net461/System.Reflection.TypeExtensions.dll", + "ref/net461/System.Reflection.TypeExtensions.xml", + "ref/net472/System.Reflection.TypeExtensions.dll", + "ref/net472/System.Reflection.TypeExtensions.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/System.Reflection.TypeExtensions.dll", + "ref/netstandard2.0/System.Reflection.TypeExtensions.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "runtimes/aot/lib/uap10.0.16299/_._", + "system.reflection.typeextensions.4.7.0-preview3.19551.4.nupkg.sha512", + "system.reflection.typeextensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "sha512": "zbswj86i6yoQyMybsHm16OPp5/uoWqTJX0X7QuguoBpOdBc7XJ9H68dvuRb4VUKh/WtbvUiftn2PnLCDC5gZxA==", + "type": "package", + "path": "system.resources.resourcemanager/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Resources.ResourceManager.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.7/System.Resources.ResourceManager.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.4.0-beta-24913-02.nupkg.sha512", + "system.resources.resourcemanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime/4.4.0-beta-24913-02": { + "sha512": "OjwRltLPQUMt7uJ4vQklRo1fFK9WsL10GMyFKB+SdZknqXzxpM3zThIjMFtiQJtf8hmXTQU8H0DkMWinTHroJw==", + "type": "package", + "path": "system.runtime/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netcoreapp1.1/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/netstandard1.7/System.Runtime.dll", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/uap10.1/System.Runtime.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Extensions/4.4.0-beta-24913-02": { + "sha512": "v1XLBAT4zvJdo4pP6wXvasll7+0v/B0X+TNueBfqsprfP0xGPOm8TOUB2ln/djZrnz/AWSOLlevjIFs6PhJD+Q==", + "type": "package", + "path": "system.runtime.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netcoreapp1.1/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.7/System.Runtime.Extensions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Runtime.Extensions.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/uap10.1/System.Runtime.Extensions.dll", + "runtimes/win/lib/net461/System.Runtime.Extensions.dll", + "system.runtime.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Handles/4.4.0-beta-24913-02": { + "sha512": "5Z5jTG+Lx8ttF1ukhKhF5cMyNbfZqsYhp8HFg6sHZojo0vPfeXYce0eRHiWkPxcZ1yHVz6V/l7iBPJIDR4nC8Q==", + "type": "package", + "path": "system.runtime.handles/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/net463/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/net463/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/netstandard1.7/System.Runtime.Handles.dll", + "ref/uap10.1/System.Runtime.Handles.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.handles.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "sha512": "T7Tv7MQGriQdoTjyztjsICDhQrsoIE4DH5yu+UlUnH5Ze+h3SRTJSdnOsXVnsA5bjq7jDTm7aFJM47KYBYi1vA==", + "type": "package", + "path": "system.runtime.interopservices/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.7/System.Runtime.InteropServices.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/uap10.1/System.Runtime.InteropServices.dll", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.interopservices.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0": { + "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==", + "type": "package", + "path": "system.runtime.loader/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net462/_._", + "lib/netstandard1.5/System.Runtime.Loader.dll", + "ref/netstandard1.5/System.Runtime.Loader.dll", + "ref/netstandard1.5/System.Runtime.Loader.xml", + "ref/netstandard1.5/de/System.Runtime.Loader.xml", + "ref/netstandard1.5/es/System.Runtime.Loader.xml", + "ref/netstandard1.5/fr/System.Runtime.Loader.xml", + "ref/netstandard1.5/it/System.Runtime.Loader.xml", + "ref/netstandard1.5/ja/System.Runtime.Loader.xml", + "ref/netstandard1.5/ko/System.Runtime.Loader.xml", + "ref/netstandard1.5/ru/System.Runtime.Loader.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml", + "system.runtime.loader.4.0.0.nupkg.sha512", + "system.runtime.loader.nuspec" + ] + }, + "System.Runtime.Numerics/4.4.0-beta-24913-02": { + "sha512": "fdLF4k7ByLmJsRvifhthFQ+y4Fb+SmOeKlcbagzBKhKORu+JFnj9P3eGHIIcTXlzIrqPNhCvqoaGCNJBwPAWXA==", + "type": "package", + "path": "system.runtime.numerics/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Runtime.Numerics.dll", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/netstandard1.7/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.7/System.Runtime.Numerics.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.numerics.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==", + "type": "package", + "path": "system.runtime.serialization.formatters/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Runtime.Serialization.Formatters.dll", + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Runtime.Serialization.Formatters.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.serialization.formatters.4.3.0.nupkg.sha512", + "system.runtime.serialization.formatters.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Primitives.dll", + "lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "system.runtime.serialization.primitives.4.3.0.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec" + ] + }, + "System.Security.Claims/4.3.0": { + "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==", + "type": "package", + "path": "system.security.claims/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/netstandard1.3/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.xml", + "ref/netstandard1.3/de/System.Security.Claims.xml", + "ref/netstandard1.3/es/System.Security.Claims.xml", + "ref/netstandard1.3/fr/System.Security.Claims.xml", + "ref/netstandard1.3/it/System.Security.Claims.xml", + "ref/netstandard1.3/ja/System.Security.Claims.xml", + "ref/netstandard1.3/ko/System.Security.Claims.xml", + "ref/netstandard1.3/ru/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hans/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hant/System.Security.Claims.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.claims.4.3.0.nupkg.sha512", + "system.security.claims.nuspec" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.3.0": { + "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "type": "package", + "path": "system.security.cryptography.cng/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net463/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net463/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "system.security.cryptography.cng.4.3.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Principal/4.3.0": { + "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==", + "type": "package", + "path": "system.security.principal/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/netstandard1.0/System.Security.Principal.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/netcore50/de/System.Security.Principal.xml", + "ref/netcore50/es/System.Security.Principal.xml", + "ref/netcore50/fr/System.Security.Principal.xml", + "ref/netcore50/it/System.Security.Principal.xml", + "ref/netcore50/ja/System.Security.Principal.xml", + "ref/netcore50/ko/System.Security.Principal.xml", + "ref/netcore50/ru/System.Security.Principal.xml", + "ref/netcore50/zh-hans/System.Security.Principal.xml", + "ref/netcore50/zh-hant/System.Security.Principal.xml", + "ref/netstandard1.0/System.Security.Principal.dll", + "ref/netstandard1.0/System.Security.Principal.xml", + "ref/netstandard1.0/de/System.Security.Principal.xml", + "ref/netstandard1.0/es/System.Security.Principal.xml", + "ref/netstandard1.0/fr/System.Security.Principal.xml", + "ref/netstandard1.0/it/System.Security.Principal.xml", + "ref/netstandard1.0/ja/System.Security.Principal.xml", + "ref/netstandard1.0/ko/System.Security.Principal.xml", + "ref/netstandard1.0/ru/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hans/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hant/System.Security.Principal.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.principal.4.3.0.nupkg.sha512", + "system.security.principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.4.0": { + "sha512": "pP+AOzt1o3jESOuLmf52YQTF7H3Ng9hTnrOESQiqsnl2IbBh1HInsAMHYtoh75iUYV0OIkHmjvveraYB6zM97w==", + "type": "package", + "path": "system.security.principal.windows/4.4.0", + "files": [ + ".nupkg.metadata", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "system.security.principal.windows.4.4.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.4.0-beta-24913-02": { + "sha512": "+IM39s4C1QMr/qKpiVlLOr+FIfyXVTe7tpIx39hoTcAvZY+sXhMMS5ErJeJdaSMZgL5ZyGzcuxkfeAYDKloW6w==", + "type": "package", + "path": "system.text.encoding/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.Encoding.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.7/System.Text.Encoding.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Text.Encoding.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.4.0-beta-24913-02.nupkg.sha512", + "system.text.encoding.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "sha512": "jK3sE8t8Ngi1hSKmPI1RGXaqdtCT6dPPvfrFWDn8u45r6Zh4RJk4962v6AU5saxkssCfTiVhqDK+Drageb5mJA==", + "type": "package", + "path": "system.text.encoding.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.Encoding.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.7/System.Text.Encoding.Extensions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.text.encoding.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.RegularExpressions/4.4.0-beta-24913-02": { + "sha512": "eb/QjBezP1/UbivTA+xpNakEST/xnm1/yc563KRUINfsZ+Owz3By8ofAV2S94usp087bWls5v1sX4rZAjuTuxg==", + "type": "package", + "path": "system.text.regularexpressions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/netstandard1.7/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.7/System.Text.RegularExpressions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.4.0-beta-24913-02.nupkg.sha512", + "system.text.regularexpressions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading/4.4.0-beta-24913-02": { + "sha512": "IDvvo0zC8/kGPUnj2l79COn+vizKPxDoJ9BcLMo5R8H7CImr4t98kZyChhY1lu2PZfxo/t+4QrtXDgZflWnPkw==", + "type": "package", + "path": "system.threading/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Threading.dll", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/netstandard1.7/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Threading.dll", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/netstandard1.7/System.Threading.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks/4.4.0-beta-24913-02": { + "sha512": "tphb/t923mWZs75EwmJg6CEB5fgC2YRItN37XvPjANv9FmCxo9THV+eD8/Fdw2SxeyZ9nJtgupbk076ZAvTV1A==", + "type": "package", + "path": "system.threading.tasks/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Threading.Tasks.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.7/System.Threading.Tasks.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Threading.Tasks.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.tasks.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks.Extensions/4.4.0-beta-24913-02": { + "sha512": "NWU1a7pXP2AySgi4ZAN0qjkzXIYRoPTg6hdMEZSxAIf7mMupJTlTB0tmJZ8QarD/33ClxoSOwN6hjCSukJ9pmw==", + "type": "package", + "path": "system.threading.tasks.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "system.threading.tasks.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks.Parallel/4.4.0-beta-24913-02": { + "sha512": "osOWN3xRHMIqXMB7YNYiMLxsl9orwUrxA+WB0ujcYXjoORyrel7L1iCz5mLdZT0o4AMH0Ps6GSIM0pYtm+PVOQ==", + "type": "package", + "path": "system.threading.tasks.parallel/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.Parallel.dll", + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.Parallel.dll", + "ref/netcore50/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/de/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/es/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/it/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll", + "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.parallel.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.tasks.parallel.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Thread/4.4.0-beta-24913-02": { + "sha512": "kO2WQOh0cJd6Yoc9JJAeBWkuKHeI/Tgg0nPyPUIihsGDTzc3G0uGeEjF4MjBi/EKly9objpgAP9sLrGIgUt3fw==", + "type": "package", + "path": "system.threading.thread/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.Thread.dll", + "lib/net461/System.Threading.Thread.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.Thread.dll", + "lib/netstandard1.7/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.Thread.dll", + "ref/net461/System.Threading.Thread.dll", + "ref/netstandard1.3/System.Threading.Thread.dll", + "ref/netstandard1.3/System.Threading.Thread.xml", + "ref/netstandard1.3/de/System.Threading.Thread.xml", + "ref/netstandard1.3/es/System.Threading.Thread.xml", + "ref/netstandard1.3/fr/System.Threading.Thread.xml", + "ref/netstandard1.3/it/System.Threading.Thread.xml", + "ref/netstandard1.3/ja/System.Threading.Thread.xml", + "ref/netstandard1.3/ko/System.Threading.Thread.xml", + "ref/netstandard1.3/ru/System.Threading.Thread.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml", + "ref/netstandard1.7/System.Threading.Thread.dll", + "ref/uap10.1/System.Threading.Thread.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/uap10.1/System.Threading.Thread.dll", + "runtimes/unix/lib/netstandard1.7/System.Threading.Thread.dll", + "runtimes/unix/lib/uap10.1/System.Threading.Thread.dll", + "runtimes/win/lib/netstandard1.7/System.Threading.Thread.dll", + "runtimes/win/lib/uap10.1/System.Threading.Thread.dll", + "system.threading.thread.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.thread.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.ThreadPool/4.4.0-beta-24913-02": { + "sha512": "lD4kymw3NHChTiqHFH9zxVvfTY8uLBy34KdBP661x8FIeiN78DwQEKMVZOQ2zZ/ThmARWxG4E7YzH1NOkJacGQ==", + "type": "package", + "path": "system.threading.threadpool/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.ThreadPool.dll", + "lib/net463/System.Threading.ThreadPool.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.ThreadPool.dll", + "lib/netstandard1.7/System.Threading.ThreadPool.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.ThreadPool.dll", + "ref/net463/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/de/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/es/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/it/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml", + "ref/netstandard1.7/System.Threading.ThreadPool.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.threadpool.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.threadpool.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.ValueTuple/4.3.1": { + "sha512": "xzDmg26Wb2x2rFDjwziaMYQJqxhrK+b4OUC008o7CnZhUMb2p5XfwgOgAQ/WlKhqxMUSDWRUm5/lNTKdh27pJA==", + "type": "package", + "path": "system.valuetuple/4.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netstandard1.0/.xml", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/.xml", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.3.1.nupkg.sha512", + "system.valuetuple.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.4.0-beta-24913-02": { + "sha512": "xrGH2gJKLBb6cPvZPtdk9P3CXg3TpPoZOFhv8bJCxk1wYzJfPbeQbeXwAJOS/fnu9tbMatwmJO0orAgopQAS0A==", + "type": "package", + "path": "system.xml.readerwriter/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/net463/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/netstandard1.7/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/net463/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.7/System.Xml.ReaderWriter.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.4.0-beta-24913-02.nupkg.sha512", + "system.xml.readerwriter.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.4.0-beta-24913-02": { + "sha512": "IgZcUmPiMEq7qXkg1pNX7vKx7a70QdaNo1hvpuKInNMCXAjmvg/CYY6uZTVWMxkZV4xyEY4kt5UnBhvn4MSjyQ==", + "type": "package", + "path": "system.xml.xmldocument/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/net463/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/netstandard1.7/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/net463/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/netstandard1.7/System.Xml.XmlDocument.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.4.0-beta-24913-02.nupkg.sha512", + "system.xml.xmldocument.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.XmlSerializer/4.3.0": { + "sha512": "MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==", + "type": "package", + "path": "system.xml.xmlserializer/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "lib/netstandard1.3/System.Xml.XmlSerializer.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XmlSerializer.dll", + "ref/netcore50/System.Xml.XmlSerializer.xml", + "ref/netcore50/de/System.Xml.XmlSerializer.xml", + "ref/netcore50/es/System.Xml.XmlSerializer.xml", + "ref/netcore50/fr/System.Xml.XmlSerializer.xml", + "ref/netcore50/it/System.Xml.XmlSerializer.xml", + "ref/netcore50/ja/System.Xml.XmlSerializer.xml", + "ref/netcore50/ko/System.Xml.XmlSerializer.xml", + "ref/netcore50/ru/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/System.Xml.XmlSerializer.dll", + "ref/netstandard1.0/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/de/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/es/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/it/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/System.Xml.XmlSerializer.dll", + "ref/netstandard1.3/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/de/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/es/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/it/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "system.xml.xmlserializer.4.3.0.nupkg.sha512", + "system.xml.xmlserializer.nuspec" + ] + }, + "System.Xml.XPath/4.4.0-beta-24913-02": { + "sha512": "ls7g1irBXk/iVKy9dr2c37xswgTZSHXgJdhAt2bqpec57RXSBWgJZqjv6GWHD3m1aPrFTIwbKApw4A15v3PwRQ==", + "type": "package", + "path": "system.xml.xpath/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XPath.dll", + "lib/net463/System.Xml.XPath.dll", + "lib/netstandard1.3/System.Xml.XPath.dll", + "lib/netstandard1.7/System.Xml.XPath.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XPath.dll", + "ref/net463/System.Xml.XPath.dll", + "ref/netstandard1.3/System.Xml.XPath.dll", + "ref/netstandard1.3/System.Xml.XPath.xml", + "ref/netstandard1.3/de/System.Xml.XPath.xml", + "ref/netstandard1.3/es/System.Xml.XPath.xml", + "ref/netstandard1.3/fr/System.Xml.XPath.xml", + "ref/netstandard1.3/it/System.Xml.XPath.xml", + "ref/netstandard1.3/ja/System.Xml.XPath.xml", + "ref/netstandard1.3/ko/System.Xml.XPath.xml", + "ref/netstandard1.3/ru/System.Xml.XPath.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml", + "ref/netstandard1.7/System.Xml.XPath.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xpath.4.4.0-beta-24913-02.nupkg.sha512", + "system.xml.xpath.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.XPath.XmlDocument/4.4.0-beta-24913-02": { + "sha512": "6kOsX+XB7UDZloCl1OATzyTAuA/GLXHk1tbZIvrmEzzjnSwX1Q0ehEcICHlgzV1J8pZ+1V69yk8UF2+ULmeSMA==", + "type": "package", + "path": "system.xml.xpath.xmldocument/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XPath.XmlDocument.dll", + "lib/net461/System.Xml.XPath.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll", + "lib/netstandard1.7/System.Xml.XPath.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.7/System.Xml.XPath.XmlDocument.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xpath.xmldocument.4.4.0-beta-24913-02.nupkg.sha512", + "system.xml.xpath.xmldocument.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "xunit/2.4.1-pre.build.4059": { + "sha512": "Kt50VVI9yqbPLPICi1J2Sl2zoidhyMqbT+ywCSINDDXCJhVOXVBoE/1geWui5Sppx8Cv5U0DmYCLxveaOB0mLw==", + "type": "package", + "path": "xunit/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "xunit.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.nuspec" + ] + }, + "xunit.abstractions/2.0.3": { + "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", + "type": "package", + "path": "xunit.abstractions/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/netstandard1.0/xunit.abstractions.dll", + "lib/netstandard1.0/xunit.abstractions.xml", + "lib/netstandard2.0/xunit.abstractions.dll", + "lib/netstandard2.0/xunit.abstractions.xml", + "xunit.abstractions.2.0.3.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.analyzers/0.10.0": { + "sha512": "4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg==", + "type": "package", + "path": "xunit.analyzers/0.10.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/xunit.analyzers.dll", + "tools/install.ps1", + "tools/uninstall.ps1", + "xunit.analyzers.0.10.0.nupkg.sha512", + "xunit.analyzers.nuspec" + ] + }, + "xunit.assert/2.4.1-pre.build.4059": { + "sha512": "PrfmhpgBTilGWP4DC6Q2FV17TEfTpnCARMjYNMQvUF1IFV5DhXNU5ChC0JeL17ctp89krn4Pld4/Wiuq4ILMxw==", + "type": "package", + "path": "xunit.assert/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.1/xunit.assert.dll", + "lib/netstandard1.1/xunit.assert.xml", + "lib/netstandard2.0/xunit.assert.dll", + "lib/netstandard2.0/xunit.assert.xml", + "xunit.assert.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.core/2.4.1-pre.build.4059": { + "sha512": "nQh89ZP+wmC79euBg5p/6Jr8rugPTQo/GAx9Wry2Pgu9q4ltDv9XeQTqsQE/trvqOjyrTRtCOQT1P+vcufj0Kg==", + "type": "package", + "path": "xunit.core/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/xunit.core.props", + "build/xunit.core.targets", + "buildMultiTargeting/xunit.core.props", + "buildMultiTargeting/xunit.core.targets", + "xunit.core.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.core.nuspec" + ] + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "sha512": "MpnCaHPR67FdYgdkbzuSIxtYdGJaY6WwjotyvifGKcy94M3Rm2eCQqKQsFSN1TbcRhHRCweOo24+E+wnGxjuTw==", + "type": "package", + "path": "xunit.extensibility.core/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/xunit.core.dll", + "lib/net452/xunit.core.dll.tdnet", + "lib/net452/xunit.core.xml", + "lib/net452/xunit.runner.tdnet.dll", + "lib/net452/xunit.runner.utility.net452.dll", + "lib/netstandard1.1/xunit.core.dll", + "lib/netstandard1.1/xunit.core.xml", + "lib/netstandard2.0/xunit.core.dll", + "lib/netstandard2.0/xunit.core.xml", + "xunit.extensibility.core.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "sha512": "sLmjOlIAAs4omfY/019PQMXWkxpxd/CfVnTEMBBEN89fU/bPfeoNRBjnqJ54tHpK2xDCPUye19PNSFH4aW6B8Q==", + "type": "package", + "path": "xunit.extensibility.execution/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/xunit.execution.desktop.dll", + "lib/net452/xunit.execution.desktop.xml", + "lib/netstandard1.1/xunit.execution.dotnet.dll", + "lib/netstandard1.1/xunit.execution.dotnet.xml", + "lib/netstandard2.0/xunit.execution.dotnet.dll", + "lib/netstandard2.0/xunit.execution.dotnet.xml", + "xunit.extensibility.execution.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "sha512": "FBASqurcvUoVQ52vY2LH4XUf1/Hkz9wmcuBj5IqIhEpgK+YjhWePepguSlpSre44hhhWNe5WO3XIrZ6pGTbyng==", + "type": "package", + "path": "xunit.performance.api/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.api.dll", + "lib/net461/xunit.performance.api.xml", + "lib/netstandard1.5/xunit.performance.api.dll", + "lib/netstandard1.5/xunit.performance.api.xml", + "xunit.performance.api.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.api.nuspec" + ] + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "sha512": "1CEv1zleRb8D0mDckZjpR8VPaP+2YSeMUAnnb/a3aL0DrG9IEeTN2Uu+30IaX/OHG7iuqLX9zWja+sey76Us0w==", + "type": "package", + "path": "xunit.performance.core/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/netstandard1.3/xunit.performance.core.dll", + "lib/netstandard1.3/xunit.performance.core.xml", + "xunit.performance.core.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.core.nuspec" + ] + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "sha512": "hfNLz/+fA1CqHPQWexPoQBDMs1y1x8gdy1WgQH1nUG5Jf1KVviUddy3+MCTEbuELyqrcLpkR/p57WLUAYKwhCw==", + "type": "package", + "path": "xunit.performance.execution/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.execution.dll", + "lib/net461/xunit.performance.execution.xml", + "lib/netstandard1.5/xunit.performance.execution.dll", + "lib/netstandard1.5/xunit.performance.execution.xml", + "xunit.performance.execution.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.execution.nuspec" + ] + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "sha512": "VWtijjK9HfQvx2nmQ15hEAtBdHEmWSVk0Gc60+yEF+xMq/wZmD0jSvCykW5Jz0ponX88Z6RU39ZjRDq+vLnCgg==", + "type": "package", + "path": "xunit.performance.metrics/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.metrics.dll", + "lib/net461/xunit.performance.metrics.xml", + "lib/netstandard1.5/xunit.performance.metrics.dll", + "lib/netstandard1.5/xunit.performance.metrics.xml", + "xunit.performance.metrics.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.metrics.nuspec" + ] + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "sha512": "oWTxKNZbtkn8HBHi59zxTRP4y80SlaOqFOu+ausTLOyOPr7/aZ39U6L9F8mh69890NRbW2Qcd/UdP3YvPsseHw==", + "type": "package", + "path": "xunit.runner.console/2.4.1-pre.build.4059", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/xunit.runner.console.props", + "tools/net452/xunit.abstractions.dll", + "tools/net452/xunit.console.exe", + "tools/net452/xunit.console.exe.config", + "tools/net452/xunit.console.x86.exe", + "tools/net452/xunit.console.x86.exe.config", + "tools/net452/xunit.runner.reporters.net452.dll", + "tools/net452/xunit.runner.utility.net452.dll", + "tools/net46/xunit.abstractions.dll", + "tools/net46/xunit.console.exe", + "tools/net46/xunit.console.exe.config", + "tools/net46/xunit.console.x86.exe", + "tools/net46/xunit.console.x86.exe.config", + "tools/net46/xunit.runner.reporters.net452.dll", + "tools/net46/xunit.runner.utility.net452.dll", + "tools/net461/xunit.abstractions.dll", + "tools/net461/xunit.console.exe", + "tools/net461/xunit.console.exe.config", + "tools/net461/xunit.console.x86.exe", + "tools/net461/xunit.console.x86.exe.config", + "tools/net461/xunit.runner.reporters.net452.dll", + "tools/net461/xunit.runner.utility.net452.dll", + "tools/net462/xunit.abstractions.dll", + "tools/net462/xunit.console.exe", + "tools/net462/xunit.console.exe.config", + "tools/net462/xunit.console.x86.exe", + "tools/net462/xunit.console.x86.exe.config", + "tools/net462/xunit.runner.reporters.net452.dll", + "tools/net462/xunit.runner.utility.net452.dll", + "tools/net47/xunit.abstractions.dll", + "tools/net47/xunit.console.exe", + "tools/net47/xunit.console.exe.config", + "tools/net47/xunit.console.x86.exe", + "tools/net47/xunit.console.x86.exe.config", + "tools/net47/xunit.runner.reporters.net452.dll", + "tools/net47/xunit.runner.utility.net452.dll", + "tools/net471/xunit.abstractions.dll", + "tools/net471/xunit.console.exe", + "tools/net471/xunit.console.exe.config", + "tools/net471/xunit.console.x86.exe", + "tools/net471/xunit.console.x86.exe.config", + "tools/net471/xunit.runner.reporters.net452.dll", + "tools/net471/xunit.runner.utility.net452.dll", + "tools/net472/xunit.abstractions.dll", + "tools/net472/xunit.console.exe", + "tools/net472/xunit.console.exe.config", + "tools/net472/xunit.console.x86.exe", + "tools/net472/xunit.console.x86.exe.config", + "tools/net472/xunit.runner.reporters.net452.dll", + "tools/net472/xunit.runner.utility.net452.dll", + "tools/netcoreapp1.0/xunit.abstractions.dll", + "tools/netcoreapp1.0/xunit.console.deps.json", + "tools/netcoreapp1.0/xunit.console.dll", + "tools/netcoreapp1.0/xunit.console.dll.config", + "tools/netcoreapp1.0/xunit.console.runtimeconfig.json", + "tools/netcoreapp1.0/xunit.runner.reporters.netcoreapp10.dll", + "tools/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll", + "tools/netcoreapp1.0/xunit.runner.utility.netcoreapp10.xml", + "tools/netcoreapp2.0/xunit.abstractions.dll", + "tools/netcoreapp2.0/xunit.console.deps.json", + "tools/netcoreapp2.0/xunit.console.dll", + "tools/netcoreapp2.0/xunit.console.dll.config", + "tools/netcoreapp2.0/xunit.console.runtimeconfig.json", + "tools/netcoreapp2.0/xunit.runner.reporters.netcoreapp10.dll", + "tools/netcoreapp2.0/xunit.runner.utility.netcoreapp10.dll", + "tools/netcoreapp2.0/xunit.runner.utility.netcoreapp10.xml", + "xunit.runner.console.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.runner.console.nuspec" + ] + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "sha512": "YyTcFxooSkYo9gr8HgLhHZ7T5PHjnCLC9dGXgbLwMCNZeqO+DzY8nWehE++FasEwMAlUv87MLhLEVXoVvMQtKQ==", + "type": "package", + "path": "xunit.runner.utility/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/xunit.runner.utility.net35.dll", + "lib/net35/xunit.runner.utility.net35.xml", + "lib/net452/xunit.runner.utility.net452.dll", + "lib/net452/xunit.runner.utility.net452.xml", + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll", + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.xml", + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll", + "lib/netstandard1.1/xunit.runner.utility.netstandard11.xml", + "lib/netstandard1.5/xunit.runner.utility.netstandard15.dll", + "lib/netstandard1.5/xunit.runner.utility.netstandard15.xml", + "lib/netstandard2.0/xunit.runner.utility.netstandard20.dll", + "lib/netstandard2.0/xunit.runner.utility.netstandard20.xml", + "lib/uap10.0/xunit.runner.utility.uwp10.dll", + "lib/uap10.0/xunit.runner.utility.uwp10.pri", + "lib/uap10.0/xunit.runner.utility.uwp10.xml", + "xunit.runner.utility.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + ".NETStandard,Version=v1.6": [ + "Microsoft.Diagnostics.Tracing.TraceEvent >= 2.0.43", + "Microsoft.NETCore.Platforms >= 3.1.0-preview3.19551.4", + "System.Collections.NonGeneric >= 4.4.0-beta-24913-02", + "System.Console >= 4.4.0-beta-24913-02", + "System.Diagnostics.Process >= 4.4.0-beta-24913-02", + "System.IO.FileSystem >= 4.4.0-beta-24913-02", + "System.Linq >= 4.4.0-beta-24913-02", + "System.Linq.Expressions >= 4.4.0-beta-24913-02", + "System.Numerics.Vectors >= 4.5.0", + "System.Reflection >= 4.4.0-beta-24913-02", + "System.Reflection.Extensions >= 4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions >= 4.7.0-preview3.19551.4", + "System.Runtime >= 4.4.0-beta-24913-02", + "System.Runtime.Extensions >= 4.4.0-beta-24913-02", + "System.Runtime.Loader >= 4.0.0", + "System.Runtime.Numerics >= 4.4.0-beta-24913-02", + "System.Security.Principal.Windows >= 4.4.0", + "System.Text.RegularExpressions >= 4.4.0-beta-24913-02", + "System.Threading >= 4.4.0-beta-24913-02", + "System.Threading.Tasks >= 4.4.0-beta-24913-02", + "System.Threading.Tasks.Parallel >= 4.4.0-beta-24913-02", + "System.Threading.Thread >= 4.4.0-beta-24913-02", + "System.Xml.XPath >= 4.4.0-beta-24913-02", + "System.Xml.XPath.XmlDocument >= 4.4.0-beta-24913-02", + "System.Xml.XmlDocument >= 4.4.0-beta-24913-02", + "xunit >= 2.4.1-pre.build.4059", + "xunit.performance.api >= 1.0.0-beta-build0015", + "xunit.performance.core >= 1.0.0-beta-build0015", + "xunit.performance.execution >= 1.0.0-beta-build0015", + "xunit.performance.metrics >= 1.0.0-beta-build0015", + "xunit.runner.console >= 2.4.1-pre.build.4059", + "xunit.runner.utility >= 2.4.1-pre.build.4059" + ] + }, + "packageFolders": { + "/home/z/Dev/coreclr-sec/.packages": {} + }, + "project": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/performance/performance.csproj", + "projectName": "performance", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/performance/performance.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/performance/obj-linux-x64", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netstandard1.6" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netstandard1.6": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netstandard1.6": { + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": { + "target": "Package", + "version": "[2.0.43, )" + }, + "Microsoft.NETCore.Platforms": { + "target": "Package", + "version": "[3.1.0-preview3.19551.4, )" + }, + "System.Collections.NonGeneric": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Console": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Diagnostics.Process": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.IO.FileSystem": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq.Expressions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Numerics.Vectors": { + "target": "Package", + "version": "[4.5.0, )" + }, + "System.Reflection": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.TypeExtensions": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Runtime": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Loader": { + "target": "Package", + "version": "[4.0.0, )" + }, + "System.Runtime.Numerics": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Security.Principal.Windows": { + "target": "Package", + "version": "[4.4.0, )" + }, + "System.Text.RegularExpressions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Tasks": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Tasks.Parallel": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Thread": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Xml.XPath": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Xml.XPath.XmlDocument": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Xml.XmlDocument": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.performance.api": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.core": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.execution": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.metrics": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.runner.console": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.runner.utility": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x64": { + "#import": [] + } + } + }, + "logs": [ + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n performance -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n performance -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.6/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n performance -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n performance -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.6/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n performance -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n performance -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.6/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n performance -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n performance -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.6/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n performance -> System.Numerics.Vectors 4.5.0 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n performance -> System.Numerics.Vectors 4.5.0 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.6/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n performance -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n performance -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.6/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n performance -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n performance -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.6/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n performance -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n performance -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.6/linux-x64" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n performance -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n performance -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.6/linux-x64" + ] + } + ] +}
\ No newline at end of file diff --git a/tests/src/performance/obj-linux-x86/performance.csproj.nuget.cache b/tests/src/performance/obj-linux-x86/performance.csproj.nuget.cache new file mode 100644 index 0000000000..a88d35bfa5 --- /dev/null +++ b/tests/src/performance/obj-linux-x86/performance.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "biigyTHC0tPyGvWdGDjLrq7doq4+zLVNGcNl7tsThhZopXqOunQQJoxsn4UPjFjRCM3pGwdj6DSMPkUiqQKQGA==", + "success": true +}
\ No newline at end of file diff --git a/tests/src/performance/obj-linux-x86/performance.csproj.nuget.dgspec.json b/tests/src/performance/obj-linux-x86/performance.csproj.nuget.dgspec.json new file mode 100644 index 0000000000..e9c9b262fe --- /dev/null +++ b/tests/src/performance/obj-linux-x86/performance.csproj.nuget.dgspec.json @@ -0,0 +1,181 @@ +{ + "format": 1, + "restore": { + "/home/z/Dev/coreclr-sec/tests/src/performance/performance.csproj": {} + }, + "projects": { + "/home/z/Dev/coreclr-sec/tests/src/performance/performance.csproj": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/performance/performance.csproj", + "projectName": "performance", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/performance/performance.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/performance/obj-linux-x86", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netstandard1.6" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netstandard1.6": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netstandard1.6": { + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": { + "target": "Package", + "version": "[2.0.43, )" + }, + "Microsoft.NETCore.Platforms": { + "target": "Package", + "version": "[3.1.0-preview3.19551.4, )" + }, + "System.Collections.NonGeneric": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Console": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Diagnostics.Process": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.IO.FileSystem": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq.Expressions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Numerics.Vectors": { + "target": "Package", + "version": "[4.5.0, )" + }, + "System.Reflection": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.TypeExtensions": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Runtime": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Loader": { + "target": "Package", + "version": "[4.0.0, )" + }, + "System.Runtime.Numerics": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Security.Principal.Windows": { + "target": "Package", + "version": "[4.4.0, )" + }, + "System.Text.RegularExpressions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Tasks": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Tasks.Parallel": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Thread": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Xml.XPath": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Xml.XPath.XmlDocument": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Xml.XmlDocument": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.performance.api": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.core": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.execution": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.metrics": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.runner.console": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.runner.utility": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x86": { + "#import": [] + } + } + } + } +}
\ No newline at end of file diff --git a/tests/src/performance/obj-linux-x86/performance.csproj.nuget.g.props b/tests/src/performance/obj-linux-x86/performance.csproj.nuget.g.props new file mode 100644 index 0000000000..e448de6ae4 --- /dev/null +++ b/tests/src/performance/obj-linux-x86/performance.csproj.nuget.g.props @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> + <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> + <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> + <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageRoot> + <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/z/Dev/coreclr-sec/.packages</NuGetPackageFolders> + <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.4.0</NuGetToolVersion> + </PropertyGroup> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> + <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)/xunit.runner.console/2.4.1-pre.build.4059/build/xunit.runner.console.props" Condition="Exists('$(NuGetPackageRoot)/xunit.runner.console/2.4.1-pre.build.4059/build/xunit.runner.console.props')" /> + <Import Project="$(NuGetPackageRoot)/microsoft.diagnostics.tracing.traceevent/2.0.43/build/Microsoft.Diagnostics.Tracing.TraceEvent.props" Condition="Exists('$(NuGetPackageRoot)/microsoft.diagnostics.tracing.traceevent/2.0.43/build/Microsoft.Diagnostics.Tracing.TraceEvent.props')" /> + <Import Project="$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.props" Condition="Exists('$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.props')" /> + </ImportGroup> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Pkgxunit_runner_console Condition=" '$(Pkgxunit_runner_console)' == '' ">/home/z/Dev/coreclr-sec/.packages/xunit.runner.console/2.4.1-pre.build.4059</Pkgxunit_runner_console> + <Pkgxunit_analyzers Condition=" '$(Pkgxunit_analyzers)' == '' ">/home/z/Dev/coreclr-sec/.packages/xunit.analyzers/0.10.0</Pkgxunit_analyzers> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/performance/obj-linux-x86/performance.csproj.nuget.g.targets b/tests/src/performance/obj-linux-x86/performance.csproj.nuget.g.targets new file mode 100644 index 0000000000..96b54d803c --- /dev/null +++ b/tests/src/performance/obj-linux-x86/performance.csproj.nuget.g.targets @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> + </PropertyGroup> + <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.targets" Condition="Exists('$(NuGetPackageRoot)/xunit.core/2.4.1-pre.build.4059/build/xunit.core.targets')" /> + </ImportGroup> +</Project>
\ No newline at end of file diff --git a/tests/src/performance/obj-linux-x86/project.assets.json b/tests/src/performance/obj-linux-x86/project.assets.json new file mode 100644 index 0000000000..d5aba52572 --- /dev/null +++ b/tests/src/performance/obj-linux-x86/project.assets.json @@ -0,0 +1,9390 @@ +{ + "version": 3, + "targets": { + ".NETStandard,Version=v1.6": { + "CommandLineParser/2.1.1-beta": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-24027", + "System.Console": "4.0.0-rc2-24027", + "System.Diagnostics.Debug": "4.0.11-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.IO": "4.1.0-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Linq.Expressions": "4.0.11-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Reflection.Extensions": "4.0.1-rc2-24027", + "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime": "4.1.0-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027" + }, + "compile": { + "lib/netstandard1.5/CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard1.5/CommandLine.dll": {} + } + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + } + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "type": "package", + "compile": { + "lib/netstandard1.6/Dia2Lib.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll": {}, + "lib/netstandard1.6/OSExtensions.dll": {}, + "lib/netstandard1.6/TraceReloggerLib.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Dia2Lib.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll": {}, + "lib/netstandard1.6/OSExtensions.dll": {}, + "lib/netstandard1.6/TraceReloggerLib.dll": {} + }, + "build": { + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.2.0-beta-24913-02": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Collections.Concurrent/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Console/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Process/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.Win32.Primitives": "4.4.0-beta-24913-02", + "Microsoft.Win32.Registry": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.Thread": "4.4.0-beta-24913-02", + "System.Threading.ThreadPool": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.4/System.Diagnostics.Process.dll": {} + }, + "runtimeTargets": { + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Globalization/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Linq": "4.4.0-beta-24913-02", + "System.ObjectModel": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Emit.Lightweight": "4.4.0-beta-24913-02", + "System.Reflection.Extensions": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "ref/netstandard1.0/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Numerics.Vectors.dll": {} + } + }, + "System.ObjectModel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Emit/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/portable45-net45+win8+wpa81/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp80+wpa81/_._": {} + } + }, + "System.Runtime.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime.Handles/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Loader/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} + }, + "runtime": { + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.Claims/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Security.Principal": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Principal/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.4.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Claims": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.RegularExpressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.6/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading.Tasks.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Thread/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.ValueTuple/4.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "System.Xml.ReaderWriter/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Text.RegularExpressions": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.Tasks.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} + } + }, + "System.Xml.XPath/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XPath.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.dll": {} + } + }, + "System.Xml.XPath.XmlDocument/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02", + "System.Xml.XPath": "4.4.0-beta-24913-02", + "System.Xml.XmlDocument": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} + } + }, + "xunit/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "[2.4.1-pre.build.4059]", + "xunit.core": "[2.4.1-pre.build.4059]" + } + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + } + }, + "xunit.analyzers/0.10.0": { + "type": "package" + }, + "xunit.assert/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.1/xunit.assert.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.assert.dll": {} + } + }, + "xunit.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.1-pre.build.4059]", + "xunit.extensibility.execution": "[2.4.1-pre.build.4059]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "[2.4.1-pre.build.4059]" + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + } + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "CommandLineParser": "2.1.1-beta", + "Microsoft.3rdpartytools.MarkdownLog": "0.10.0-alpha-experimental", + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.ValueTuple": "4.3.1", + "System.Xml.XmlSerializer": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015", + "xunit.performance.execution": "1.0.0-beta-build0015", + "xunit.performance.metrics": "1.0.0-beta-build0015", + "xunit.runner.utility": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + } + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + } + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit": "2.2.0-beta2-build3300", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + } + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Formatters": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + } + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "type": "package", + "build": { + "build/xunit.runner.console.props": {} + } + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.5/xunit.runner.utility.netstandard15.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.runner.utility.netstandard15.dll": {} + } + } + }, + ".NETStandard,Version=v1.6/linux-x86": { + "CommandLineParser/2.1.1-beta": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-24027", + "System.Console": "4.0.0-rc2-24027", + "System.Diagnostics.Debug": "4.0.11-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.IO": "4.1.0-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Linq.Expressions": "4.0.11-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Reflection.Extensions": "4.0.1-rc2-24027", + "System.Reflection.TypeExtensions": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime": "4.1.0-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027" + }, + "compile": { + "lib/netstandard1.5/CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard1.5/CommandLine.dll": {} + } + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll": {} + } + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "type": "package", + "compile": { + "lib/netstandard1.6/Dia2Lib.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll": {}, + "lib/netstandard1.6/OSExtensions.dll": {}, + "lib/netstandard1.6/TraceReloggerLib.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Dia2Lib.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll": {}, + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll": {}, + "lib/netstandard1.6/OSExtensions.dll": {}, + "lib/netstandard1.6/TraceReloggerLib.dll": {} + }, + "build": { + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.2.0-beta-24913-02": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.unix.Microsoft.Win32.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "runtime.any.System.Collections/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tools/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.Tools.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "runtime.any.System.Globalization/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.dll": {} + } + }, + "runtime.any.System.Globalization.Calendars/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "runtime.any.System.IO/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.IO.dll": {} + } + }, + "runtime.any.System.Reflection/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.dll": {} + } + }, + "runtime.any.System.Reflection.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Primitives.dll": {} + } + }, + "runtime.any.System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Resources.ResourceManager.dll": {} + } + }, + "runtime.any.System.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.dll": {} + } + }, + "runtime.any.System.Runtime.Handles/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "runtime.any.System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Runtime.InteropServices.dll": {} + } + }, + "runtime.any.System.Text.Encoding/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "runtime.any.System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "runtime.any.System.Threading.Tasks/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "runtime.any.System.Threading.Timer/4.4.0-beta-24913-02": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Timer.dll": {} + } + }, + "runtime.native.System/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package" + }, + "runtime.unix.Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.unix.System.Console/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Console.dll": {} + } + }, + "runtime.unix.System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.unix.System.IO.FileSystem/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Buffers": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "runtime.unix.System.Net.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "runtime.unix.System.Net.Sockets/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.Net.NameResolution": "4.4.0-beta-24913-02", + "System.Net.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.ThreadPool": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "runtime.unix.System.Private.Uri/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.0/System.Private.Uri.dll": {} + } + }, + "runtime.unix.System.Runtime.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Buffers.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Collections": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Collections.Concurrent/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Console/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "runtime.unix.System.Console": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.unix.System.Diagnostics.Debug": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Process/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.Win32.Primitives": "4.4.0-beta-24913-02", + "Microsoft.Win32.Registry": "4.4.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.Thread": "4.4.0-beta-24913-02", + "System.Threading.ThreadPool": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.4/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Diagnostics.Tools": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Diagnostics.Tracing": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Globalization/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Globalization": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization.Calendars": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.any.System.IO": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {} + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.unix.System.IO.FileSystem": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Linq": "4.4.0-beta-24913-02", + "System.ObjectModel": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Emit.Lightweight": "4.4.0-beta-24913-02", + "System.Reflection.Extensions": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {} + } + }, + "System.Net.NameResolution/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Net.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Security.Principal.Windows": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "runtime.native.System": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {} + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.unix.System.Net.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.unix.System.Net.Sockets": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "ref/netstandard1.0/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Numerics.Vectors.dll": {} + } + }, + "System.ObjectModel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Private.Uri/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "runtime.unix.System.Private.Uri": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard/_._": {} + } + }, + "System.Reflection/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Reflection": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Reflection.Emit/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.IO": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Emit.ILGeneration": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Reflection.Primitives": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/portable45-net45+win8+wpa81/_._": {} + } + }, + "System.Reflection.TypeExtensions/4.7.0-preview3.19551.4": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Resources.ResourceManager": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "runtime.any.System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp80+wpa81/_._": {} + } + }, + "System.Runtime.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.unix.System.Runtime.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Runtime.Handles/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Runtime.Handles": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Reflection": "4.4.0-beta-24913-02", + "System.Reflection.Primitives": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02", + "runtime.any.System.Runtime.InteropServices": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wpa81/_._": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + } + }, + "System.Runtime.Loader/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} + }, + "runtime": { + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.Claims/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Security.Principal": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.4.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Claims": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Principal.Windows.dll": {} + } + }, + "System.Text.Encoding/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Text.Encoding": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "runtime.any.System.Text.Encoding.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Text.RegularExpressions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.6/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.2.0-beta-24913-02", + "Microsoft.NETCore.Targets": "1.2.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "runtime.any.System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/_._": {} + } + }, + "System.Threading.Tasks.Extensions/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Diagnostics.Tracing": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Thread/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Handles": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Threading.Timer": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.ValueTuple/4.3.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ValueTuple.dll": {} + } + }, + "System.Xml.ReaderWriter/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.IO.FileSystem": "4.4.0-beta-24913-02", + "System.IO.FileSystem.Primitives": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Runtime.InteropServices": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Text.Encoding.Extensions": "4.4.0-beta-24913-02", + "System.Text.RegularExpressions": "4.4.0-beta-24913-02", + "System.Threading.Tasks": "4.4.0-beta-24913-02", + "System.Threading.Tasks.Extensions": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Text.Encoding": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} + } + }, + "System.Xml.XPath/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Diagnostics.Debug": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XPath.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.dll": {} + } + }, + "System.Xml.XPath.XmlDocument/4.4.0-beta-24913-02": { + "type": "package", + "dependencies": { + "System.Collections": "4.4.0-beta-24913-02", + "System.Globalization": "4.4.0-beta-24913-02", + "System.IO": "4.4.0-beta-24913-02", + "System.Resources.ResourceManager": "4.4.0-beta-24913-02", + "System.Runtime": "4.4.0-beta-24913-02", + "System.Runtime.Extensions": "4.4.0-beta-24913-02", + "System.Threading": "4.4.0-beta-24913-02", + "System.Xml.ReaderWriter": "4.4.0-beta-24913-02", + "System.Xml.XPath": "4.4.0-beta-24913-02", + "System.Xml.XmlDocument": "4.4.0-beta-24913-02" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {} + } + }, + "xunit/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "[2.4.1-pre.build.4059]", + "xunit.core": "[2.4.1-pre.build.4059]" + } + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + "compile": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/xunit.abstractions.dll": {} + } + }, + "xunit.analyzers/0.10.0": { + "type": "package" + }, + "xunit.assert/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.1/xunit.assert.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.assert.dll": {} + } + }, + "xunit.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.1-pre.build.4059]", + "xunit.extensibility.execution": "[2.4.1-pre.build.4059]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "[2.4.1-pre.build.4059]" + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + } + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "CommandLineParser": "2.1.1-beta", + "Microsoft.3rdpartytools.MarkdownLog": "0.10.0-alpha-experimental", + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.ValueTuple": "4.3.1", + "System.Xml.XmlSerializer": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015", + "xunit.performance.execution": "1.0.0-beta-build0015", + "xunit.performance.metrics": "1.0.0-beta-build0015", + "xunit.runner.utility": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.api.dll": {} + } + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "2.2.0-beta2-build3300" + }, + "compile": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + }, + "runtime": { + "lib/netstandard1.3/xunit.performance.core.dll": {} + } + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit": "2.2.0-beta2-build3300", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.execution.dll": {} + } + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "type": "package", + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Formatters": "4.3.0", + "xunit.performance.core": "1.0.0-beta-build0015" + }, + "compile": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.performance.metrics.dll": {} + } + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "type": "package", + "build": { + "build/xunit.runner.console.props": {} + } + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection.TypeExtensions": "4.3.0", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.5/xunit.runner.utility.netstandard15.dll": {} + }, + "runtime": { + "lib/netstandard1.5/xunit.runner.utility.netstandard15.dll": {} + } + } + } + }, + "libraries": { + "CommandLineParser/2.1.1-beta": { + "sha512": "TmWNdtqLmtqLbwr0c9l1nEjjk39GB7wevl+1rxN907kjmdUUu5s470bWJFPEckfjYTnZ216xziW5fMXP35KVXg==", + "type": "package", + "path": "commandlineparser/2.1.1-beta", + "files": [ + ".nupkg.metadata", + "commandlineparser.2.1.1-beta.nupkg.sha512", + "commandlineparser.nuspec", + "lib/net40/CommandLine.XML", + "lib/net40/CommandLine.dll", + "lib/net45/CommandLine.XML", + "lib/net45/CommandLine.dll", + "lib/netstandard1.5/CommandLine.dll", + "lib/netstandard1.5/CommandLine.xml", + "readme.md" + ] + }, + "Microsoft.3rdpartytools.MarkdownLog/0.10.0-alpha-experimental": { + "sha512": "BlzmPbwd0w2OGgXHFRWYu0tsJj6f6rAglvZ5q5hi71TGl6DDCZjP7WmMvcEFZi5MGGWkZ3VoPXQ4hJMMuGJF6A==", + "type": "package", + "path": "microsoft.3rdpartytools.markdownlog/0.10.0-alpha-experimental", + "files": [ + ".nupkg.metadata", + "lib/netstandard1.5/Microsoft.3rdpartytools.MarkdownLog.dll", + "microsoft.3rdpartytools.markdownlog.0.10.0-alpha-experimental.nupkg.sha512", + "microsoft.3rdpartytools.markdownlog.nuspec" + ] + }, + "Microsoft.Diagnostics.Tracing.TraceEvent/2.0.43": { + "sha512": "76ol4cZYvYiaiP5Vbows1ts2WDGpi/x2QxaoAToNCoGD+s2v7znzxPygPprXNYW4HmWgN8z3FsItIZb45X8OgQ==", + "type": "package", + "path": "microsoft.diagnostics.tracing.traceevent/2.0.43", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Microsoft.Diagnostics.Tracing.TraceEvent.props", + "lib/native/amd64/KernelTraceControl.dll", + "lib/native/amd64/msdia140.dll", + "lib/native/x86/KernelTraceControl.Win61.dll", + "lib/native/x86/KernelTraceControl.dll", + "lib/native/x86/msdia140.dll", + "lib/net45/Dia2Lib.dll", + "lib/net45/Microsoft.Diagnostics.FastSerialization.dll", + "lib/net45/Microsoft.Diagnostics.FastSerialization.xml", + "lib/net45/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/net45/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/net45/OSExtensions.dll", + "lib/net45/TraceReloggerLib.dll", + "lib/netstandard1.6/Dia2Lib.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.FastSerialization.xml", + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/netstandard1.6/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/netstandard1.6/OSExtensions.dll", + "lib/netstandard1.6/TraceReloggerLib.dll", + "lib/netstandard2.0/Dia2Lib.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.FastSerialization.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.FastSerialization.xml", + "lib/netstandard2.0/Microsoft.Diagnostics.Tracing.TraceEvent.dll", + "lib/netstandard2.0/Microsoft.Diagnostics.Tracing.TraceEvent.xml", + "lib/netstandard2.0/OSExtensions.dll", + "lib/netstandard2.0/TraceReloggerLib.dll", + "microsoft.diagnostics.tracing.traceevent.2.0.43.nupkg.sha512", + "microsoft.diagnostics.tracing.traceevent.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/3.1.0-preview3.19551.4": { + "sha512": "Clr2Jue6oyBlnsVf9g5qjoi06+QDYVq+U32buU9W+mRYeIFg4LXeJei1q6P/1niiKX8WIVo7KbBnqW80jVcOvw==", + "type": "package", + "path": "microsoft.netcore.platforms/3.1.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.3.1.0-preview3.19551.4.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.2.0-beta-24913-02": { + "sha512": "Z76BzrF4Nz0qVN676Tlmk3GdRxvlFDQZF6FoBRcfIkpEd07H4JLkuqryqTlbQ30X3XXUzAtsImuI2yW9eYb55g==", + "type": "package", + "path": "microsoft.netcore.targets/1.2.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.2.0-beta-24913-02.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "sha512": "gPGph68msdAFoQB9Emn9zxxR7Igg58Nm76zgI4UAFJINBPPsrCHxfXTsJY4qhsnecahDw609V+TAL8tS32XaDg==", + "type": "package", + "path": "microsoft.win32.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/net463/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/net463/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.7/Microsoft.Win32.Primitives.dll", + "ref/uap10.1/Microsoft.Win32.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.Registry/4.4.0-beta-24913-02": { + "sha512": "XpKuSucbIipPi5XzUftawczAHaE2eeQFVNRDk951HNmYhaeAlm1qoNY5yGyepFnZUlkkttolrd/nU1ePvhIyEw==", + "type": "package", + "path": "microsoft.win32.registry/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net463/Microsoft.Win32.Registry.dll", + "microsoft.win32.registry.4.4.0-beta-24913-02.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net463/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard1.7/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard1.7/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net463/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard1.7/Microsoft.Win32.Registry.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "runtime.any.System.Collections/4.4.0-beta-24913-02": { + "sha512": "F2g9ysPsUdvdzg7PusjRSfO9lCYa8hAR2TxoT+WaJ3RqCjZUmrwzFRk6mkBVhb/jqoku1wh+DjkiVws4T/iI3A==", + "type": "package", + "path": "runtime.any.system.collections/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.dll", + "lib/netstandard1.3/System.Collections.dll", + "lib/netstandard1.7/System.Collections.dll", + "lib/uap10.1/System.Collections.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.collections.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.collections.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Collections.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Diagnostics.Tools/4.4.0-beta-24913-02": { + "sha512": "q9ex5GZda4qQWulQXw0mXxUpzYsIXA+fJsduZ4+76rFfkCTCAYnFqLg3pq1++oRe5utNE55kAWCXnPEfBjhgEw==", + "type": "package", + "path": "runtime.any.system.diagnostics.tools/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/netstandard1.3/System.Diagnostics.Tools.dll", + "lib/netstandard1.7/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tools.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.diagnostics.tools.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "sha512": "Eb5yKhR992tpieQ3k2U0Mmu7SzGodlBz7pPY4vVxrmLgO+t6bwye0Bw6+tcqO05gN3kDH47C/CKyh+ta41ULdw==", + "type": "package", + "path": "runtime.any.system.diagnostics.tracing/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "lib/netstandard1.5/System.Diagnostics.Tracing.dll", + "lib/netstandard1.7/System.Diagnostics.Tracing.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tracing.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.diagnostics.tracing.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Globalization/4.4.0-beta-24913-02": { + "sha512": "szVxxBBn8e+UDwJ+lg9C+XPSjvifllUzLuGrwhM9xPKdQUjJMrxd23yG49n0XM3q+pSIrOoHwLgWf3QDmt4PKw==", + "type": "package", + "path": "runtime.any.system.globalization/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Globalization.dll", + "lib/netstandard1.3/System.Globalization.dll", + "lib/netstandard1.7/System.Globalization.dll", + "lib/uap10.1/System.Globalization.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.globalization.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/aot/lib/uap101/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Globalization.Calendars/4.4.0-beta-24913-02": { + "sha512": "f+dLksC+5rTLnXj5ILLvAmrhvfuklzN3ba9g5O8hmbZd8zvSELF2FSw+GXbWsgqXEtjvgs4LvvH0UHkYm4nigA==", + "type": "package", + "path": "runtime.any.system.globalization.calendars/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net/_._", + "lib/netcore50/System.Globalization.Calendars.dll", + "lib/netstandard1.3/System.Globalization.Calendars.dll", + "lib/netstandard1.7/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.calendars.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.globalization.calendars.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.IO/4.4.0-beta-24913-02": { + "sha512": "jr+a+OUh/h6BIO/N+SXMDVbUln6dJIEPw/Ffaqj6aq+HmjMK1sr/aP6jw6sWRUU5hi91ppd3VMQ0xyk7Z3qBbA==", + "type": "package", + "path": "runtime.any.system.io/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.IO.dll", + "lib/netstandard1.5/System.IO.dll", + "lib/netstandard1.7/System.IO.dll", + "lib/uap10.1/System.IO.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.io.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.io.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Reflection/4.4.0-beta-24913-02": { + "sha512": "3kbe1bVviwUdBK5fN5O0646ZvpSMwMNl0uB68nf1aH9LA9EQo/xDwAbRmqbhY1wbN4ydH8PhsI2H9YNrnmRIRQ==", + "type": "package", + "path": "runtime.any.system.reflection/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.dll", + "lib/netstandard1.5/System.Reflection.dll", + "lib/netstandard1.7/System.Reflection.dll", + "lib/uap10.1/System.Reflection.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.reflection.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Reflection.Primitives/4.4.0-beta-24913-02": { + "sha512": "dEDCNyC3/P1Cl3+z5Gqhe6NZ20slv2biVjq1p8VInY9ETQTzK3QYBESPXkBlLgqG4xX+AXHIoEzWChXmj1KCYg==", + "type": "package", + "path": "runtime.any.system.reflection.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/netstandard1.3/System.Reflection.Primitives.dll", + "lib/netstandard1.7/System.Reflection.Primitives.dll", + "lib/portable45-net45+win8+wp8+wpa81/_._", + "lib/portable45-net45+win8+wpa81/_._", + "lib/uap10.1/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.reflection.primitives.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Reflection.Primitives.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "sha512": "oPqDrDykaRm+drr+dDXAveefrhawetYPTOETO84M2XeZsdgVR1YATecZun7PbbgUnSgvTR6UviiTnffEYIaIUg==", + "type": "package", + "path": "runtime.any.system.resources.resourcemanager/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/netstandard1.3/System.Resources.ResourceManager.dll", + "lib/netstandard1.7/System.Resources.ResourceManager.dll", + "lib/uap10.1/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.resources.resourcemanager.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.resources.resourcemanager.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Runtime/4.4.0-beta-24913-02": { + "sha512": "WszqTsye25+HP+UHSbqW5zW4khkQGA4fE9T/ZbPwzjA8t7+H7kc6RZEEaw3NmNBHVPCPQ2/rPs+DuVr2ely9dQ==", + "type": "package", + "path": "runtime.any.system.runtime/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.dll", + "lib/netcoreapp1.2/System.Runtime.dll", + "lib/netstandard1.5/System.Runtime.dll", + "lib/netstandard1.7/System.Runtime.dll", + "lib/uap10.1/System.Runtime.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.runtime.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Runtime.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Runtime.Handles/4.4.0-beta-24913-02": { + "sha512": "QVZWjaAvR/fAnWQ84CIfOL1bP3sROghLXJV2TVOrCSy3nGbKe8R0hJMMSiYRZ1cJSPFkXCR4ov9Giq2UWhap2w==", + "type": "package", + "path": "runtime.any.system.runtime.handles/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netstandard1.3/System.Runtime.Handles.dll", + "lib/netstandard1.7/System.Runtime.Handles.dll", + "lib/uap10.1/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.handles.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.runtime.handles.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "sha512": "fQhiPiPdc2MvT1Ly8qNhXXRhtOn80nxI7zN/Rzqa+kUBETdJzivUhs2KfaMA6CeArM0HlCZr9nkb5jPe3QSy0A==", + "type": "package", + "path": "runtime.any.system.runtime.interopservices/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "lib/netstandard1.5/System.Runtime.InteropServices.dll", + "lib/netstandard1.6/System.Runtime.InteropServices.dll", + "lib/netstandard1.7/System.Runtime.InteropServices.dll", + "lib/uap10.1/System.Runtime.InteropServices.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.interopservices.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.runtime.interopservices.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Runtime.InteropServices.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Text.Encoding/4.4.0-beta-24913-02": { + "sha512": "Xeqwi4XTKzoU787kjWuFmad+InOs+3GFQt7jYgTvZescP/O1QPOpXo2OBdohyM+G7krDarJufdl4S7fNvhWacQ==", + "type": "package", + "path": "runtime.any.system.text.encoding/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/netstandard1.3/System.Text.Encoding.dll", + "lib/netstandard1.7/System.Text.Encoding.dll", + "lib/uap10.1/System.Text.Encoding.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.text.encoding.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "sha512": "x32Af805w4cweMs7FNZCXHe/k2twQFE9l0/siz7P86e4PhHz6wc4BJ6I8AR3kxqBwtgSF7QPnLhN1yNxem8/MA==", + "type": "package", + "path": "runtime.any.system.text.encoding.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll", + "lib/netstandard1.7/System.Text.Encoding.Extensions.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.text.encoding.extensions.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Threading.Tasks/4.4.0-beta-24913-02": { + "sha512": "WfTJsPBqnWM3ba8Ua9xehHQbJW+RwcAu9LCWXuMhQAmsxssz15uycggqRdsS6hb2dRkZS9Jz3dtu3ns6Q7M2qw==", + "type": "package", + "path": "runtime.any.system.threading.tasks/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/netstandard1.3/System.Threading.Tasks.dll", + "lib/netstandard1.7/System.Threading.Tasks.dll", + "lib/uap10.1/System.Threading.Tasks.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.tasks.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.threading.tasks.nuspec", + "runtimes/aot/lib/netcore50/_._", + "runtimes/corert/lib/netcoreapp1.2/System.Threading.Tasks.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.any.System.Threading.Timer/4.4.0-beta-24913-02": { + "sha512": "+IDpQUBdCovPqrD9tV2OlluOc+CNsDSs8GJ5WVa/ZBXCeVGX2qwZKO8a3nwnc81SpxO1zGlMo/Y2m6K0pDPnKQ==", + "type": "package", + "path": "runtime.any.system.threading.timer/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/netstandard1.3/System.Threading.Timer.dll", + "lib/netstandard1.7/System.Threading.Timer.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.timer.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.any.system.threading.timer.nuspec", + "runtimes/aot/lib/netcore50/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.4.0-beta-24913-02": { + "sha512": "DtEYKhWPpIDQlWxyIWBiUK7Q3H2kPxVNLuOccIJY17tS1I4b0ya5FVc6WVj47Zg3SUvFuJhZzM7EqZsl5c4RWA==", + "type": "package", + "path": "runtime.native.system/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.native.system.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.4.0-beta-24913-02": { + "sha512": "J9TS90larMk0sgXUZQceCtbLzuYm3wHud/qBTLGYC5Yd6ntuZCifJxQd7QhM5jykR2u06aPCkKiv9bodz16tyw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.unix.Microsoft.Win32.Primitives/4.4.0-beta-24913-02": { + "sha512": "ErIf7An6edPAgcSJcLZAYH8KEr2Aqi2H47K860JKyXLnwK0G047ksS8VtVg0v9z2cs3p+YTLTDD6dFLbg3RLpg==", + "type": "package", + "path": "runtime.unix.microsoft.win32.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.microsoft.win32.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.microsoft.win32.primitives.nuspec", + "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Primitives.dll", + "runtimes/unix/lib/netstandard1.7/Microsoft.Win32.Primitives.dll", + "runtimes/unix/lib/uap10.1/Microsoft.Win32.Primitives.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Console/4.4.0-beta-24913-02": { + "sha512": "bVyMROOfEqc/7fRDnearZ6Jpeq/Psc+EFe/srfRQeVuFLMXT6cxaCvUk+4gHJisdSZQCleIdlIy4VoS/Tdvs7w==", + "type": "package", + "path": "runtime.unix.system.console/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.console.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.console.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Console.dll", + "runtimes/unix/lib/netstandard1.7/System.Console.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "sha512": "M95VkuwoXStqkCny6RJK1pECnFevEqkrvlDjyouEUXJneIB4qSH0LHH9rfrmhQosE+Z5m3KQIh1wCGneZ932Zg==", + "type": "package", + "path": "runtime.unix.system.diagnostics.debug/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.diagnostics.debug.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.diagnostics.debug.nuspec", + "runtimes/unix-corert/lib/netcoreapp1.2/System.Diagnostics.Debug.dll", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.Debug.dll", + "runtimes/unix/lib/netstandard1.7/System.Diagnostics.Debug.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.IO.FileSystem/4.4.0-beta-24913-02": { + "sha512": "4E0WH3D3D7uAHImAj3zQBRuYHSfUrCvdyv75+TuvTLw6RKPtoBR8Jq0mVAXIqshvrUfHCyBzv+cn5oY2BrBSRA==", + "type": "package", + "path": "runtime.unix.system.io.filesystem/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.io.filesystem.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.io.filesystem.nuspec", + "runtimes/unix/lib/netstandard1.3/System.IO.FileSystem.dll", + "runtimes/unix/lib/netstandard1.7/System.IO.FileSystem.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Net.Primitives/4.4.0-beta-24913-02": { + "sha512": "DBOmYuPH4khZftILHrquXZTda5PiTaBsWejwwtYtZsvUPZtF0nYmsjbCrOycbGWzS4gFZoU6vqD4dMbku4/ZEg==", + "type": "package", + "path": "runtime.unix.system.net.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.net.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.net.primitives.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Net.Primitives.dll", + "runtimes/unix/lib/netstandard1.7/System.Net.Primitives.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Net.Sockets/4.4.0-beta-24913-02": { + "sha512": "vl7Lz6dnOa+xi/WUUsZ1G3TFhroPkPrWKWVSUGg9E6mGcK5m2VqCbqcWwneYehgallbBMLOEmL7nsq+1XXCGWQ==", + "type": "package", + "path": "runtime.unix.system.net.sockets/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.net.sockets.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.net.sockets.nuspec", + "runtimes/unix/lib/netstandard1.3/System.Net.Sockets.dll", + "runtimes/unix/lib/netstandard1.7/System.Net.Sockets.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Private.Uri/4.4.0-beta-24913-02": { + "sha512": "CM/S/SEyzccTOXKa+HAnUpAKlqspZRgfYbEQWKxTpm3iljXcj5aWuoaZFAav3Rts34FS6A7m+zCUgJeRKFGzPQ==", + "type": "package", + "path": "runtime.unix.system.private.uri/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.private.uri.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.private.uri.nuspec", + "runtimes/unix-corert/lib/netcoreapp1.2/System.Private.Uri.dll", + "runtimes/unix/lib/netstandard1.0/System.Private.Uri.dll", + "runtimes/unix/lib/uap10.1/System.Private.Uri.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.unix.System.Runtime.Extensions/4.4.0-beta-24913-02": { + "sha512": "SbmnGceBoHRqOLVdRdgdOd9UKizKVmwlBpbww67Hju5rUbMdOv4AdkoHrFm+Ee7kO0xHumYHlTuenmXmuFRW4Q==", + "type": "package", + "path": "runtime.unix.system.runtime.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.unix.system.runtime.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "runtime.unix.system.runtime.extensions.nuspec", + "runtimes/unix-corert/lib/netcoreapp1.2/System.Runtime.Extensions.dll", + "runtimes/unix/lib/netstandard1.5/System.Runtime.Extensions.dll", + "runtimes/unix/lib/netstandard1.7/System.Runtime.Extensions.dll", + "runtimes/unix/lib/uap10.1/System.Runtime.Extensions.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.3.0": { + "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "type": "package", + "path": "system.buffers/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/.xml", + "lib/netstandard1.1/System.Buffers.dll", + "system.buffers.4.3.0.nupkg.sha512", + "system.buffers.nuspec" + ] + }, + "System.Buffers/4.4.0-beta-24913-02": { + "sha512": "759YUTLvoV/0Y8oIp+yiPruR79AB+g5q+DqhDfNBjX1UxG7mAiemru5zEKMHEUBmj19nuDpwO1VXeFw/LfqYjw==", + "type": "package", + "path": "system.buffers/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netcoreapp1.1/.xml", + "lib/netcoreapp1.1/System.Buffers.dll", + "lib/netstandard1.1/.xml", + "lib/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.dll", + "system.buffers.4.4.0-beta-24913-02.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.4.0-beta-24913-02": { + "sha512": "Y9+bO37c8uVvXqkNGm90t2geVYeaEkWjMTgOkq6CkOOAtF5BpqKTvwnelXWP2pmL5fSqAMvPhsN/UXkTTxgMRA==", + "type": "package", + "path": "system.collections/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Collections.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Collections.dll", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netcoreapp1.1/System.Collections.dll", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/netstandard1.7/System.Collections.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Collections.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.4.0-beta-24913-02.nupkg.sha512", + "system.collections.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections.Concurrent/4.4.0-beta-24913-02": { + "sha512": "eky+QV4xCtubhbJk62uICQ4iygDnhoU7ojHRZbog5bqhjGWHtzvLdLu9nBu7YPKh7GDzk2ZHfL9uNECo8kKcdA==", + "type": "package", + "path": "system.collections.concurrent/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/netstandard1.7/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netcoreapp1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.4.0-beta-24913-02.nupkg.sha512", + "system.collections.concurrent.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections.NonGeneric/4.4.0-beta-24913-02": { + "sha512": "VEhSZSDYNv1aJieXt4O4grrHspFZAw+4XT7PsJwnitqYjYDNT8tiBj2ALtEt7U/Jx2tf86wHDqdnKYqlvLLqog==", + "type": "package", + "path": "system.collections.nongeneric/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/net463/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", + "lib/netstandard1.7/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/net463/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/netstandard1.7/System.Collections.NonGeneric.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.4.0-beta-24913-02.nupkg.sha512", + "system.collections.nongeneric.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Console/4.4.0-beta-24913-02": { + "sha512": "AiRso5v4Rbn6JgfRevPTZ0q+bpkfuAGQtkk4Aiuu+np3c4mEdHrW/ippOuSmIQJmvyHVEg9TQxpjrjcZUhLvkw==", + "type": "package", + "path": "system.console/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/net463/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/net463/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/netstandard1.7/System.Console.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.4.0-beta-24913-02.nupkg.sha512", + "system.console.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Debug/4.4.0-beta-24913-02": { + "sha512": "1JrMoPGopozBemABZVZvaXpPjXPqboGsxyZE+r8iuaJuU6nCVpxIvZf9LTkDZdXvdzA6UN8gNyo5JVkTpDRrtQ==", + "type": "package", + "path": "system.diagnostics.debug/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Diagnostics.Debug.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.7/System.Diagnostics.Debug.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net463/System.Diagnostics.Debug.dll", + "system.diagnostics.debug.4.4.0-beta-24913-02.nupkg.sha512", + "system.diagnostics.debug.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec" + ] + }, + "System.Diagnostics.Process/4.4.0-beta-24913-02": { + "sha512": "Wi29/vAxe1W8J8IVa9Snd5RLWFJkvRUsNW1l3n6N/7vb0thD9GHtW3bdZVk+IpudHUrvXaZc7PmVFAGu0CbMTA==", + "type": "package", + "path": "system.diagnostics.process/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.Process.dll", + "lib/net461/System.Diagnostics.Process.dll", + "lib/net463/System.Diagnostics.Process.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.Process.dll", + "ref/net461/System.Diagnostics.Process.dll", + "ref/net463/System.Diagnostics.Process.dll", + "ref/netstandard1.3/System.Diagnostics.Process.dll", + "ref/netstandard1.3/System.Diagnostics.Process.xml", + "ref/netstandard1.3/de/System.Diagnostics.Process.xml", + "ref/netstandard1.3/es/System.Diagnostics.Process.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Process.xml", + "ref/netstandard1.3/it/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Process.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Process.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Process.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Process.xml", + "ref/netstandard1.4/System.Diagnostics.Process.dll", + "ref/netstandard1.4/System.Diagnostics.Process.xml", + "ref/netstandard1.4/de/System.Diagnostics.Process.xml", + "ref/netstandard1.4/es/System.Diagnostics.Process.xml", + "ref/netstandard1.4/fr/System.Diagnostics.Process.xml", + "ref/netstandard1.4/it/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ja/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ko/System.Diagnostics.Process.xml", + "ref/netstandard1.4/ru/System.Diagnostics.Process.xml", + "ref/netstandard1.4/zh-hans/System.Diagnostics.Process.xml", + "ref/netstandard1.4/zh-hant/System.Diagnostics.Process.xml", + "ref/netstandard1.7/System.Diagnostics.Process.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/linux/lib/netstandard1.7/System.Diagnostics.Process.dll", + "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/osx/lib/netstandard1.7/System.Diagnostics.Process.dll", + "runtimes/win/lib/net46/System.Diagnostics.Process.dll", + "runtimes/win/lib/net461/System.Diagnostics.Process.dll", + "runtimes/win/lib/net463/System.Diagnostics.Process.dll", + "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll", + "runtimes/win/lib/netstandard1.7/System.Diagnostics.Process.dll", + "runtimes/win7/lib/netcore50/_._", + "system.diagnostics.process.4.4.0-beta-24913-02.nupkg.sha512", + "system.diagnostics.process.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.4.0-beta-24913-02": { + "sha512": "dupkxZ5nLUDX8e9OqQ1XqPJM54UZo3XGRiFeqdF/a59R90KbVSmmhqT4RPwa92fi4Unr401DQXMDBEVLLmJo9w==", + "type": "package", + "path": "system.diagnostics.tracing/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.7/System.Diagnostics.Tracing.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.4.0-beta-24913-02.nupkg.sha512", + "system.diagnostics.tracing.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Globalization/4.4.0-beta-24913-02": { + "sha512": "KxBYuqGY1P0LBAn1uXLyiYf3qXiNlhDCfCtLBemYA7mouGqqs+YPgYo2WuI5pqGU6VjAWiQvAT6PeNhofDvTHw==", + "type": "package", + "path": "system.globalization/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Globalization.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Globalization.dll", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/netstandard1.7/System.Globalization.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Globalization.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.4.0-beta-24913-02.nupkg.sha512", + "system.globalization.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IO/4.4.0-beta-24913-02": { + "sha512": "BEqLHSTjhsWFdxz0q5OYlFc2Ic7NcWbKrn13IulLnRpF9yJClv3W2CxSHPq2IB48qKvODoYO9wEKax74+JK8eg==", + "type": "package", + "path": "system.io/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netcoreapp1.1/System.IO.dll", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/netstandard1.7/System.IO.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.IO.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.4.0-beta-24913-02.nupkg.sha512", + "system.io.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.4.0-beta-24913-02": { + "sha512": "DvhfpfWgOwoxyjPNYKhMV0xZuqGdznnaC7aIMzBc2oh+u19jZrloGl11P2DnFKJLfsth5DPLvTMxXmvKLeuykw==", + "type": "package", + "path": "system.io.filesystem/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/net463/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/net463/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/netstandard1.7/System.IO.FileSystem.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.4.0-beta-24913-02.nupkg.sha512", + "system.io.filesystem.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.FileSystem.Primitives/4.4.0-beta-24913-02": { + "sha512": "wRiqs3kiUczfE2pBubg2o3u06yQeUeqZruZG8ckw5/QJHRMCcnSaf//dyhJs+Qnq7uOYVoI2p8rEnYjm6w9omw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/net463/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.7/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/net463/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.7/System.IO.FileSystem.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "system.io.filesystem.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq/4.4.0-beta-24913-02": { + "sha512": "bjnCiY6U3f9k7fH/R3IQohZniRlLB3MdQ59n0nH8oa26YCFZO+OgjdVbSj67RgVpxupYLzXCZ80li32HcL4qdQ==", + "type": "package", + "path": "system.linq/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netcoreapp1.1/System.Linq.dll", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.4.0-beta-24913-02.nupkg.sha512", + "system.linq.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq.Expressions/4.4.0-beta-24913-02": { + "sha512": "FGRSqzfppwrXJSO+91Bi3BEOV1xejk/VHOL3bZRJYCshZ67t8s5OeOk8ywh96Xi12+RFIsXkIzJYBBYC3xV/ow==", + "type": "package", + "path": "system.linq.expressions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/netstandard1.7/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.7/System.Linq.Expressions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.4.0-beta-24913-02.nupkg.sha512", + "system.linq.expressions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.NameResolution/4.4.0-beta-24913-02": { + "sha512": "xTSaAEadOMDmmGLv60VMP1GtqMq++l23ld96Rg3X/Sphde1FFLB9nUetcoWx7VwfC5sJ1m70YprLKXDS4PNG8A==", + "type": "package", + "path": "system.net.nameresolution/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.NameResolution.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.xml", + "ref/netstandard1.3/de/System.Net.NameResolution.xml", + "ref/netstandard1.3/es/System.Net.NameResolution.xml", + "ref/netstandard1.3/fr/System.Net.NameResolution.xml", + "ref/netstandard1.3/it/System.Net.NameResolution.xml", + "ref/netstandard1.3/ja/System.Net.NameResolution.xml", + "ref/netstandard1.3/ko/System.Net.NameResolution.xml", + "ref/netstandard1.3/ru/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", + "runtimes/win/lib/net46/System.Net.NameResolution.dll", + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll", + "system.net.nameresolution.4.4.0-beta-24913-02.nupkg.sha512", + "system.net.nameresolution.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.Numerics.Vectors/4.5.0": { + "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "type": "package", + "path": "system.numerics.vectors/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/netstandard2.0/System.Numerics.Vectors.dll", + "lib/netstandard2.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.Numerics.Vectors.dll", + "ref/net45/System.Numerics.Vectors.xml", + "ref/net46/System.Numerics.Vectors.dll", + "ref/net46/System.Numerics.Vectors.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", + "ref/netstandard2.0/System.Numerics.Vectors.dll", + "ref/netstandard2.0/System.Numerics.Vectors.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.numerics.vectors.4.5.0.nupkg.sha512", + "system.numerics.vectors.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ObjectModel/4.4.0-beta-24913-02": { + "sha512": "7fImkhTugA/dsFg/prA4UH7CoP4xmf7Brd5/v+dUA62mND9foQQnTOq0xSCOVZ6b25sy0kKqxLUtekZvRIMlkQ==", + "type": "package", + "path": "system.objectmodel/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.ObjectModel.dll", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/netstandard1.7/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netcoreapp1.1/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.7/System.ObjectModel.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.4.0-beta-24913-02.nupkg.sha512", + "system.objectmodel.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Private.Uri/4.4.0-beta-24913-02": { + "sha512": "P5WV/+fFObWRGhcbiUIx+23/hz4k/x6xFoePjam1t6xvKw+E1E4KkM8O2sRkZQ0h8i7ATr04oCi5jNnzg2+idg==", + "type": "package", + "path": "system.private.uri/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "system.private.uri.4.4.0-beta-24913-02.nupkg.sha512", + "system.private.uri.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection/4.4.0-beta-24913-02": { + "sha512": "BYjVZSHD4JDmhn5LueNSF16qU8WA6V2YAakX+q+U9lAlj/B+gV+l9vO2RkJjzexvDcZLluFzIUdpWDGtOj95wA==", + "type": "package", + "path": "system.reflection/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/netstandard1.7/System.Reflection.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Reflection.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit/4.4.0-beta-24913-02": { + "sha512": "8t9c/WJwVW4lM4furhRKIGDH4YIMnqWeo/tXktHJpczi6SiBpWfi+RymwRVbbxrPy7+b+jgtspwM0AHizm8hRg==", + "type": "package", + "path": "system.reflection.emit/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.emit.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit.ILGeneration/4.4.0-beta-24913-02": { + "sha512": "StjC21V2SztX1QUCMlwE1QfXXJhmmNJVu07DDLqj/fn6F23tIHB+EDcroeA7QKRQbfarUxL4MzZAJqEhcfPqYA==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit.Lightweight/4.4.0-beta-24913-02": { + "sha512": "qK7GukxWqkcU5tG7YLLLZdAvaDsAFk6Kp6sXd4Cxpm8jcoHNzCPV48dZMx64TczZHtbedHwwkYJe5JKTHnGcKA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Extensions/4.4.0-beta-24913-02": { + "sha512": "6f9M3xv5HkaZEbZLsjRSEHekr1bbEFUbtpr/8NHGJ3cwjdUmfirIwT3i69VxPy0xx9nj8OLbfGitQcPOUsK/sA==", + "type": "package", + "path": "system.reflection.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Reflection.Extensions.dll", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/netstandard1.3/System.Reflection.Extensions.dll", + "lib/netstandard1.7/System.Reflection.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.1/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.7/System.Reflection.Extensions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Reflection.Extensions.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll", + "runtimes/aot/lib/uap10.1/System.Reflection.Extensions.dll", + "system.reflection.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Primitives/4.4.0-beta-24913-02": { + "sha512": "qR0QeMteCI5xqH473N019aiA3kSrUYIsxHb5yD8EMeEY9ZQpDe7eETxaxm9mDtZsk5ykm3fboDda8cAsHqM5+w==", + "type": "package", + "path": "system.reflection.primitives/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Reflection.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/portable45-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.7/System.Reflection.Primitives.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/portable45-net45+win8+wpa81/_._", + "ref/uap10.1/System.Reflection.Primitives.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.4.0-beta-24913-02.nupkg.sha512", + "system.reflection.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.TypeExtensions/4.7.0-preview3.19551.4": { + "sha512": "PYxuzuBiOLVfZLE40zmzvpJx4NBNMAFBLIKTq5FSRtHjpBK9JzmtuWylHVv9L2sp62Aux4bA7w/Ma/Q+4u8+pA==", + "type": "package", + "path": "system.reflection.typeextensions/4.7.0-preview3.19551.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net461/System.Reflection.TypeExtensions.dll", + "lib/net461/System.Reflection.TypeExtensions.xml", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netcoreapp1.0/System.Reflection.TypeExtensions.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.3/System.Reflection.TypeExtensions.xml", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.xml", + "lib/netstandard2.0/System.Reflection.TypeExtensions.dll", + "lib/netstandard2.0/System.Reflection.TypeExtensions.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net461/System.Reflection.TypeExtensions.dll", + "ref/net461/System.Reflection.TypeExtensions.xml", + "ref/net472/System.Reflection.TypeExtensions.dll", + "ref/net472/System.Reflection.TypeExtensions.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/System.Reflection.TypeExtensions.dll", + "ref/netstandard2.0/System.Reflection.TypeExtensions.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "runtimes/aot/lib/uap10.0.16299/_._", + "system.reflection.typeextensions.4.7.0-preview3.19551.4.nupkg.sha512", + "system.reflection.typeextensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Resources.ResourceManager/4.4.0-beta-24913-02": { + "sha512": "zbswj86i6yoQyMybsHm16OPp5/uoWqTJX0X7QuguoBpOdBc7XJ9H68dvuRb4VUKh/WtbvUiftn2PnLCDC5gZxA==", + "type": "package", + "path": "system.resources.resourcemanager/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Resources.ResourceManager.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.7/System.Resources.ResourceManager.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.4.0-beta-24913-02.nupkg.sha512", + "system.resources.resourcemanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime/4.4.0-beta-24913-02": { + "sha512": "OjwRltLPQUMt7uJ4vQklRo1fFK9WsL10GMyFKB+SdZknqXzxpM3zThIjMFtiQJtf8hmXTQU8H0DkMWinTHroJw==", + "type": "package", + "path": "system.runtime/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netcoreapp1.1/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/netstandard1.7/System.Runtime.dll", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/uap10.1/System.Runtime.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Extensions/4.4.0-beta-24913-02": { + "sha512": "v1XLBAT4zvJdo4pP6wXvasll7+0v/B0X+TNueBfqsprfP0xGPOm8TOUB2ln/djZrnz/AWSOLlevjIFs6PhJD+Q==", + "type": "package", + "path": "system.runtime.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netcoreapp1.1/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.7/System.Runtime.Extensions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Runtime.Extensions.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/uap10.1/System.Runtime.Extensions.dll", + "runtimes/win/lib/net461/System.Runtime.Extensions.dll", + "system.runtime.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Handles/4.4.0-beta-24913-02": { + "sha512": "5Z5jTG+Lx8ttF1ukhKhF5cMyNbfZqsYhp8HFg6sHZojo0vPfeXYce0eRHiWkPxcZ1yHVz6V/l7iBPJIDR4nC8Q==", + "type": "package", + "path": "system.runtime.handles/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/net463/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/net463/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/netstandard1.7/System.Runtime.Handles.dll", + "ref/uap10.1/System.Runtime.Handles.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.handles.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.InteropServices/4.4.0-beta-24913-02": { + "sha512": "T7Tv7MQGriQdoTjyztjsICDhQrsoIE4DH5yu+UlUnH5Ze+h3SRTJSdnOsXVnsA5bjq7jDTm7aFJM47KYBYi1vA==", + "type": "package", + "path": "system.runtime.interopservices/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.7/System.Runtime.InteropServices.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/uap10.1/System.Runtime.InteropServices.dll", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.interopservices.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0": { + "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==", + "type": "package", + "path": "system.runtime.loader/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net462/_._", + "lib/netstandard1.5/System.Runtime.Loader.dll", + "ref/netstandard1.5/System.Runtime.Loader.dll", + "ref/netstandard1.5/System.Runtime.Loader.xml", + "ref/netstandard1.5/de/System.Runtime.Loader.xml", + "ref/netstandard1.5/es/System.Runtime.Loader.xml", + "ref/netstandard1.5/fr/System.Runtime.Loader.xml", + "ref/netstandard1.5/it/System.Runtime.Loader.xml", + "ref/netstandard1.5/ja/System.Runtime.Loader.xml", + "ref/netstandard1.5/ko/System.Runtime.Loader.xml", + "ref/netstandard1.5/ru/System.Runtime.Loader.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml", + "system.runtime.loader.4.0.0.nupkg.sha512", + "system.runtime.loader.nuspec" + ] + }, + "System.Runtime.Numerics/4.4.0-beta-24913-02": { + "sha512": "fdLF4k7ByLmJsRvifhthFQ+y4Fb+SmOeKlcbagzBKhKORu+JFnj9P3eGHIIcTXlzIrqPNhCvqoaGCNJBwPAWXA==", + "type": "package", + "path": "system.runtime.numerics/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Runtime.Numerics.dll", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/netstandard1.7/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.7/System.Runtime.Numerics.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.4.0-beta-24913-02.nupkg.sha512", + "system.runtime.numerics.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==", + "type": "package", + "path": "system.runtime.serialization.formatters/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Runtime.Serialization.Formatters.dll", + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Runtime.Serialization.Formatters.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.serialization.formatters.4.3.0.nupkg.sha512", + "system.runtime.serialization.formatters.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Primitives.dll", + "lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "system.runtime.serialization.primitives.4.3.0.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec" + ] + }, + "System.Security.Claims/4.3.0": { + "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==", + "type": "package", + "path": "system.security.claims/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/netstandard1.3/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.xml", + "ref/netstandard1.3/de/System.Security.Claims.xml", + "ref/netstandard1.3/es/System.Security.Claims.xml", + "ref/netstandard1.3/fr/System.Security.Claims.xml", + "ref/netstandard1.3/it/System.Security.Claims.xml", + "ref/netstandard1.3/ja/System.Security.Claims.xml", + "ref/netstandard1.3/ko/System.Security.Claims.xml", + "ref/netstandard1.3/ru/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hans/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hant/System.Security.Claims.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.claims.4.3.0.nupkg.sha512", + "system.security.claims.nuspec" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.3.0": { + "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "type": "package", + "path": "system.security.cryptography.cng/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net463/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net463/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "system.security.cryptography.cng.4.3.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Principal/4.3.0": { + "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==", + "type": "package", + "path": "system.security.principal/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/netstandard1.0/System.Security.Principal.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/netcore50/de/System.Security.Principal.xml", + "ref/netcore50/es/System.Security.Principal.xml", + "ref/netcore50/fr/System.Security.Principal.xml", + "ref/netcore50/it/System.Security.Principal.xml", + "ref/netcore50/ja/System.Security.Principal.xml", + "ref/netcore50/ko/System.Security.Principal.xml", + "ref/netcore50/ru/System.Security.Principal.xml", + "ref/netcore50/zh-hans/System.Security.Principal.xml", + "ref/netcore50/zh-hant/System.Security.Principal.xml", + "ref/netstandard1.0/System.Security.Principal.dll", + "ref/netstandard1.0/System.Security.Principal.xml", + "ref/netstandard1.0/de/System.Security.Principal.xml", + "ref/netstandard1.0/es/System.Security.Principal.xml", + "ref/netstandard1.0/fr/System.Security.Principal.xml", + "ref/netstandard1.0/it/System.Security.Principal.xml", + "ref/netstandard1.0/ja/System.Security.Principal.xml", + "ref/netstandard1.0/ko/System.Security.Principal.xml", + "ref/netstandard1.0/ru/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hans/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hant/System.Security.Principal.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.principal.4.3.0.nupkg.sha512", + "system.security.principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.4.0": { + "sha512": "pP+AOzt1o3jESOuLmf52YQTF7H3Ng9hTnrOESQiqsnl2IbBh1HInsAMHYtoh75iUYV0OIkHmjvveraYB6zM97w==", + "type": "package", + "path": "system.security.principal.windows/4.4.0", + "files": [ + ".nupkg.metadata", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "system.security.principal.windows.4.4.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.4.0-beta-24913-02": { + "sha512": "+IM39s4C1QMr/qKpiVlLOr+FIfyXVTe7tpIx39hoTcAvZY+sXhMMS5ErJeJdaSMZgL5ZyGzcuxkfeAYDKloW6w==", + "type": "package", + "path": "system.text.encoding/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.Encoding.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.7/System.Text.Encoding.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Text.Encoding.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.4.0-beta-24913-02.nupkg.sha512", + "system.text.encoding.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding.Extensions/4.4.0-beta-24913-02": { + "sha512": "jK3sE8t8Ngi1hSKmPI1RGXaqdtCT6dPPvfrFWDn8u45r6Zh4RJk4962v6AU5saxkssCfTiVhqDK+Drageb5mJA==", + "type": "package", + "path": "system.text.encoding.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.Encoding.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.7/System.Text.Encoding.Extensions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.text.encoding.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.RegularExpressions/4.4.0-beta-24913-02": { + "sha512": "eb/QjBezP1/UbivTA+xpNakEST/xnm1/yc563KRUINfsZ+Owz3By8ofAV2S94usp087bWls5v1sX4rZAjuTuxg==", + "type": "package", + "path": "system.text.regularexpressions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/netstandard1.7/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.7/System.Text.RegularExpressions.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.4.0-beta-24913-02.nupkg.sha512", + "system.text.regularexpressions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading/4.4.0-beta-24913-02": { + "sha512": "IDvvo0zC8/kGPUnj2l79COn+vizKPxDoJ9BcLMo5R8H7CImr4t98kZyChhY1lu2PZfxo/t+4QrtXDgZflWnPkw==", + "type": "package", + "path": "system.threading/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Threading.dll", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/netstandard1.7/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Threading.dll", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/netstandard1.7/System.Threading.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks/4.4.0-beta-24913-02": { + "sha512": "tphb/t923mWZs75EwmJg6CEB5fgC2YRItN37XvPjANv9FmCxo9THV+eD8/Fdw2SxeyZ9nJtgupbk076ZAvTV1A==", + "type": "package", + "path": "system.threading.tasks/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Threading.Tasks.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.7/System.Threading.Tasks.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.1/System.Threading.Tasks.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.tasks.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks.Extensions/4.4.0-beta-24913-02": { + "sha512": "NWU1a7pXP2AySgi4ZAN0qjkzXIYRoPTg6hdMEZSxAIf7mMupJTlTB0tmJZ8QarD/33ClxoSOwN6hjCSukJ9pmw==", + "type": "package", + "path": "system.threading.tasks.extensions/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "system.threading.tasks.extensions.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks.Parallel/4.4.0-beta-24913-02": { + "sha512": "osOWN3xRHMIqXMB7YNYiMLxsl9orwUrxA+WB0ujcYXjoORyrel7L1iCz5mLdZT0o4AMH0Ps6GSIM0pYtm+PVOQ==", + "type": "package", + "path": "system.threading.tasks.parallel/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.Parallel.dll", + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.Parallel.dll", + "ref/netcore50/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/de/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/es/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/it/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll", + "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.parallel.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.tasks.parallel.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Thread/4.4.0-beta-24913-02": { + "sha512": "kO2WQOh0cJd6Yoc9JJAeBWkuKHeI/Tgg0nPyPUIihsGDTzc3G0uGeEjF4MjBi/EKly9objpgAP9sLrGIgUt3fw==", + "type": "package", + "path": "system.threading.thread/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.Thread.dll", + "lib/net461/System.Threading.Thread.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.Thread.dll", + "lib/netstandard1.7/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.Thread.dll", + "ref/net461/System.Threading.Thread.dll", + "ref/netstandard1.3/System.Threading.Thread.dll", + "ref/netstandard1.3/System.Threading.Thread.xml", + "ref/netstandard1.3/de/System.Threading.Thread.xml", + "ref/netstandard1.3/es/System.Threading.Thread.xml", + "ref/netstandard1.3/fr/System.Threading.Thread.xml", + "ref/netstandard1.3/it/System.Threading.Thread.xml", + "ref/netstandard1.3/ja/System.Threading.Thread.xml", + "ref/netstandard1.3/ko/System.Threading.Thread.xml", + "ref/netstandard1.3/ru/System.Threading.Thread.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml", + "ref/netstandard1.7/System.Threading.Thread.dll", + "ref/uap10.1/System.Threading.Thread.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/uap10.1/System.Threading.Thread.dll", + "runtimes/unix/lib/netstandard1.7/System.Threading.Thread.dll", + "runtimes/unix/lib/uap10.1/System.Threading.Thread.dll", + "runtimes/win/lib/netstandard1.7/System.Threading.Thread.dll", + "runtimes/win/lib/uap10.1/System.Threading.Thread.dll", + "system.threading.thread.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.thread.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.ThreadPool/4.4.0-beta-24913-02": { + "sha512": "lD4kymw3NHChTiqHFH9zxVvfTY8uLBy34KdBP661x8FIeiN78DwQEKMVZOQ2zZ/ThmARWxG4E7YzH1NOkJacGQ==", + "type": "package", + "path": "system.threading.threadpool/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.ThreadPool.dll", + "lib/net463/System.Threading.ThreadPool.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.ThreadPool.dll", + "lib/netstandard1.7/System.Threading.ThreadPool.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.ThreadPool.dll", + "ref/net463/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/de/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/es/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/it/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml", + "ref/netstandard1.7/System.Threading.ThreadPool.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.threadpool.4.4.0-beta-24913-02.nupkg.sha512", + "system.threading.threadpool.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.ValueTuple/4.3.1": { + "sha512": "xzDmg26Wb2x2rFDjwziaMYQJqxhrK+b4OUC008o7CnZhUMb2p5XfwgOgAQ/WlKhqxMUSDWRUm5/lNTKdh27pJA==", + "type": "package", + "path": "system.valuetuple/4.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netstandard1.0/.xml", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/.xml", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.3.1.nupkg.sha512", + "system.valuetuple.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.4.0-beta-24913-02": { + "sha512": "xrGH2gJKLBb6cPvZPtdk9P3CXg3TpPoZOFhv8bJCxk1wYzJfPbeQbeXwAJOS/fnu9tbMatwmJO0orAgopQAS0A==", + "type": "package", + "path": "system.xml.readerwriter/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/net463/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/netstandard1.7/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/net463/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.7/System.Xml.ReaderWriter.dll", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.4.0-beta-24913-02.nupkg.sha512", + "system.xml.readerwriter.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.4.0-beta-24913-02": { + "sha512": "IgZcUmPiMEq7qXkg1pNX7vKx7a70QdaNo1hvpuKInNMCXAjmvg/CYY6uZTVWMxkZV4xyEY4kt5UnBhvn4MSjyQ==", + "type": "package", + "path": "system.xml.xmldocument/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/net463/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/netstandard1.7/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/net463/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/netstandard1.7/System.Xml.XmlDocument.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.4.0-beta-24913-02.nupkg.sha512", + "system.xml.xmldocument.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.XmlSerializer/4.3.0": { + "sha512": "MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==", + "type": "package", + "path": "system.xml.xmlserializer/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "lib/netstandard1.3/System.Xml.XmlSerializer.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XmlSerializer.dll", + "ref/netcore50/System.Xml.XmlSerializer.xml", + "ref/netcore50/de/System.Xml.XmlSerializer.xml", + "ref/netcore50/es/System.Xml.XmlSerializer.xml", + "ref/netcore50/fr/System.Xml.XmlSerializer.xml", + "ref/netcore50/it/System.Xml.XmlSerializer.xml", + "ref/netcore50/ja/System.Xml.XmlSerializer.xml", + "ref/netcore50/ko/System.Xml.XmlSerializer.xml", + "ref/netcore50/ru/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/System.Xml.XmlSerializer.dll", + "ref/netstandard1.0/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/de/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/es/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/it/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/System.Xml.XmlSerializer.dll", + "ref/netstandard1.3/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/de/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/es/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/it/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "system.xml.xmlserializer.4.3.0.nupkg.sha512", + "system.xml.xmlserializer.nuspec" + ] + }, + "System.Xml.XPath/4.4.0-beta-24913-02": { + "sha512": "ls7g1irBXk/iVKy9dr2c37xswgTZSHXgJdhAt2bqpec57RXSBWgJZqjv6GWHD3m1aPrFTIwbKApw4A15v3PwRQ==", + "type": "package", + "path": "system.xml.xpath/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XPath.dll", + "lib/net463/System.Xml.XPath.dll", + "lib/netstandard1.3/System.Xml.XPath.dll", + "lib/netstandard1.7/System.Xml.XPath.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XPath.dll", + "ref/net463/System.Xml.XPath.dll", + "ref/netstandard1.3/System.Xml.XPath.dll", + "ref/netstandard1.3/System.Xml.XPath.xml", + "ref/netstandard1.3/de/System.Xml.XPath.xml", + "ref/netstandard1.3/es/System.Xml.XPath.xml", + "ref/netstandard1.3/fr/System.Xml.XPath.xml", + "ref/netstandard1.3/it/System.Xml.XPath.xml", + "ref/netstandard1.3/ja/System.Xml.XPath.xml", + "ref/netstandard1.3/ko/System.Xml.XPath.xml", + "ref/netstandard1.3/ru/System.Xml.XPath.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml", + "ref/netstandard1.7/System.Xml.XPath.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xpath.4.4.0-beta-24913-02.nupkg.sha512", + "system.xml.xpath.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.XPath.XmlDocument/4.4.0-beta-24913-02": { + "sha512": "6kOsX+XB7UDZloCl1OATzyTAuA/GLXHk1tbZIvrmEzzjnSwX1Q0ehEcICHlgzV1J8pZ+1V69yk8UF2+ULmeSMA==", + "type": "package", + "path": "system.xml.xpath.xmldocument/4.4.0-beta-24913-02", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XPath.XmlDocument.dll", + "lib/net461/System.Xml.XPath.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll", + "lib/netstandard1.7/System.Xml.XPath.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml", + "ref/netstandard1.7/System.Xml.XPath.XmlDocument.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xpath.xmldocument.4.4.0-beta-24913-02.nupkg.sha512", + "system.xml.xpath.xmldocument.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "xunit/2.4.1-pre.build.4059": { + "sha512": "Kt50VVI9yqbPLPICi1J2Sl2zoidhyMqbT+ywCSINDDXCJhVOXVBoE/1geWui5Sppx8Cv5U0DmYCLxveaOB0mLw==", + "type": "package", + "path": "xunit/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "xunit.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.nuspec" + ] + }, + "xunit.abstractions/2.0.3": { + "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", + "type": "package", + "path": "xunit.abstractions/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/netstandard1.0/xunit.abstractions.dll", + "lib/netstandard1.0/xunit.abstractions.xml", + "lib/netstandard2.0/xunit.abstractions.dll", + "lib/netstandard2.0/xunit.abstractions.xml", + "xunit.abstractions.2.0.3.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.analyzers/0.10.0": { + "sha512": "4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg==", + "type": "package", + "path": "xunit.analyzers/0.10.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/xunit.analyzers.dll", + "tools/install.ps1", + "tools/uninstall.ps1", + "xunit.analyzers.0.10.0.nupkg.sha512", + "xunit.analyzers.nuspec" + ] + }, + "xunit.assert/2.4.1-pre.build.4059": { + "sha512": "PrfmhpgBTilGWP4DC6Q2FV17TEfTpnCARMjYNMQvUF1IFV5DhXNU5ChC0JeL17ctp89krn4Pld4/Wiuq4ILMxw==", + "type": "package", + "path": "xunit.assert/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.1/xunit.assert.dll", + "lib/netstandard1.1/xunit.assert.xml", + "lib/netstandard2.0/xunit.assert.dll", + "lib/netstandard2.0/xunit.assert.xml", + "xunit.assert.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.core/2.4.1-pre.build.4059": { + "sha512": "nQh89ZP+wmC79euBg5p/6Jr8rugPTQo/GAx9Wry2Pgu9q4ltDv9XeQTqsQE/trvqOjyrTRtCOQT1P+vcufj0Kg==", + "type": "package", + "path": "xunit.core/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/xunit.core.props", + "build/xunit.core.targets", + "buildMultiTargeting/xunit.core.props", + "buildMultiTargeting/xunit.core.targets", + "xunit.core.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.core.nuspec" + ] + }, + "xunit.extensibility.core/2.4.1-pre.build.4059": { + "sha512": "MpnCaHPR67FdYgdkbzuSIxtYdGJaY6WwjotyvifGKcy94M3Rm2eCQqKQsFSN1TbcRhHRCweOo24+E+wnGxjuTw==", + "type": "package", + "path": "xunit.extensibility.core/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/xunit.core.dll", + "lib/net452/xunit.core.dll.tdnet", + "lib/net452/xunit.core.xml", + "lib/net452/xunit.runner.tdnet.dll", + "lib/net452/xunit.runner.utility.net452.dll", + "lib/netstandard1.1/xunit.core.dll", + "lib/netstandard1.1/xunit.core.xml", + "lib/netstandard2.0/xunit.core.dll", + "lib/netstandard2.0/xunit.core.xml", + "xunit.extensibility.core.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.4.1-pre.build.4059": { + "sha512": "sLmjOlIAAs4omfY/019PQMXWkxpxd/CfVnTEMBBEN89fU/bPfeoNRBjnqJ54tHpK2xDCPUye19PNSFH4aW6B8Q==", + "type": "package", + "path": "xunit.extensibility.execution/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/xunit.execution.desktop.dll", + "lib/net452/xunit.execution.desktop.xml", + "lib/netstandard1.1/xunit.execution.dotnet.dll", + "lib/netstandard1.1/xunit.execution.dotnet.xml", + "lib/netstandard2.0/xunit.execution.dotnet.dll", + "lib/netstandard2.0/xunit.execution.dotnet.xml", + "xunit.extensibility.execution.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.performance.api/1.0.0-beta-build0015": { + "sha512": "FBASqurcvUoVQ52vY2LH4XUf1/Hkz9wmcuBj5IqIhEpgK+YjhWePepguSlpSre44hhhWNe5WO3XIrZ6pGTbyng==", + "type": "package", + "path": "xunit.performance.api/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.api.dll", + "lib/net461/xunit.performance.api.xml", + "lib/netstandard1.5/xunit.performance.api.dll", + "lib/netstandard1.5/xunit.performance.api.xml", + "xunit.performance.api.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.api.nuspec" + ] + }, + "xunit.performance.core/1.0.0-beta-build0015": { + "sha512": "1CEv1zleRb8D0mDckZjpR8VPaP+2YSeMUAnnb/a3aL0DrG9IEeTN2Uu+30IaX/OHG7iuqLX9zWja+sey76Us0w==", + "type": "package", + "path": "xunit.performance.core/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/netstandard1.3/xunit.performance.core.dll", + "lib/netstandard1.3/xunit.performance.core.xml", + "xunit.performance.core.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.core.nuspec" + ] + }, + "xunit.performance.execution/1.0.0-beta-build0015": { + "sha512": "hfNLz/+fA1CqHPQWexPoQBDMs1y1x8gdy1WgQH1nUG5Jf1KVviUddy3+MCTEbuELyqrcLpkR/p57WLUAYKwhCw==", + "type": "package", + "path": "xunit.performance.execution/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.execution.dll", + "lib/net461/xunit.performance.execution.xml", + "lib/netstandard1.5/xunit.performance.execution.dll", + "lib/netstandard1.5/xunit.performance.execution.xml", + "xunit.performance.execution.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.execution.nuspec" + ] + }, + "xunit.performance.metrics/1.0.0-beta-build0015": { + "sha512": "VWtijjK9HfQvx2nmQ15hEAtBdHEmWSVk0Gc60+yEF+xMq/wZmD0jSvCykW5Jz0ponX88Z6RU39ZjRDq+vLnCgg==", + "type": "package", + "path": "xunit.performance.metrics/1.0.0-beta-build0015", + "files": [ + ".nupkg.metadata", + "lib/net461/xunit.performance.metrics.dll", + "lib/net461/xunit.performance.metrics.xml", + "lib/netstandard1.5/xunit.performance.metrics.dll", + "lib/netstandard1.5/xunit.performance.metrics.xml", + "xunit.performance.metrics.1.0.0-beta-build0015.nupkg.sha512", + "xunit.performance.metrics.nuspec" + ] + }, + "xunit.runner.console/2.4.1-pre.build.4059": { + "sha512": "oWTxKNZbtkn8HBHi59zxTRP4y80SlaOqFOu+ausTLOyOPr7/aZ39U6L9F8mh69890NRbW2Qcd/UdP3YvPsseHw==", + "type": "package", + "path": "xunit.runner.console/2.4.1-pre.build.4059", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/xunit.runner.console.props", + "tools/net452/xunit.abstractions.dll", + "tools/net452/xunit.console.exe", + "tools/net452/xunit.console.exe.config", + "tools/net452/xunit.console.x86.exe", + "tools/net452/xunit.console.x86.exe.config", + "tools/net452/xunit.runner.reporters.net452.dll", + "tools/net452/xunit.runner.utility.net452.dll", + "tools/net46/xunit.abstractions.dll", + "tools/net46/xunit.console.exe", + "tools/net46/xunit.console.exe.config", + "tools/net46/xunit.console.x86.exe", + "tools/net46/xunit.console.x86.exe.config", + "tools/net46/xunit.runner.reporters.net452.dll", + "tools/net46/xunit.runner.utility.net452.dll", + "tools/net461/xunit.abstractions.dll", + "tools/net461/xunit.console.exe", + "tools/net461/xunit.console.exe.config", + "tools/net461/xunit.console.x86.exe", + "tools/net461/xunit.console.x86.exe.config", + "tools/net461/xunit.runner.reporters.net452.dll", + "tools/net461/xunit.runner.utility.net452.dll", + "tools/net462/xunit.abstractions.dll", + "tools/net462/xunit.console.exe", + "tools/net462/xunit.console.exe.config", + "tools/net462/xunit.console.x86.exe", + "tools/net462/xunit.console.x86.exe.config", + "tools/net462/xunit.runner.reporters.net452.dll", + "tools/net462/xunit.runner.utility.net452.dll", + "tools/net47/xunit.abstractions.dll", + "tools/net47/xunit.console.exe", + "tools/net47/xunit.console.exe.config", + "tools/net47/xunit.console.x86.exe", + "tools/net47/xunit.console.x86.exe.config", + "tools/net47/xunit.runner.reporters.net452.dll", + "tools/net47/xunit.runner.utility.net452.dll", + "tools/net471/xunit.abstractions.dll", + "tools/net471/xunit.console.exe", + "tools/net471/xunit.console.exe.config", + "tools/net471/xunit.console.x86.exe", + "tools/net471/xunit.console.x86.exe.config", + "tools/net471/xunit.runner.reporters.net452.dll", + "tools/net471/xunit.runner.utility.net452.dll", + "tools/net472/xunit.abstractions.dll", + "tools/net472/xunit.console.exe", + "tools/net472/xunit.console.exe.config", + "tools/net472/xunit.console.x86.exe", + "tools/net472/xunit.console.x86.exe.config", + "tools/net472/xunit.runner.reporters.net452.dll", + "tools/net472/xunit.runner.utility.net452.dll", + "tools/netcoreapp1.0/xunit.abstractions.dll", + "tools/netcoreapp1.0/xunit.console.deps.json", + "tools/netcoreapp1.0/xunit.console.dll", + "tools/netcoreapp1.0/xunit.console.dll.config", + "tools/netcoreapp1.0/xunit.console.runtimeconfig.json", + "tools/netcoreapp1.0/xunit.runner.reporters.netcoreapp10.dll", + "tools/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll", + "tools/netcoreapp1.0/xunit.runner.utility.netcoreapp10.xml", + "tools/netcoreapp2.0/xunit.abstractions.dll", + "tools/netcoreapp2.0/xunit.console.deps.json", + "tools/netcoreapp2.0/xunit.console.dll", + "tools/netcoreapp2.0/xunit.console.dll.config", + "tools/netcoreapp2.0/xunit.console.runtimeconfig.json", + "tools/netcoreapp2.0/xunit.runner.reporters.netcoreapp10.dll", + "tools/netcoreapp2.0/xunit.runner.utility.netcoreapp10.dll", + "tools/netcoreapp2.0/xunit.runner.utility.netcoreapp10.xml", + "xunit.runner.console.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.runner.console.nuspec" + ] + }, + "xunit.runner.utility/2.4.1-pre.build.4059": { + "sha512": "YyTcFxooSkYo9gr8HgLhHZ7T5PHjnCLC9dGXgbLwMCNZeqO+DzY8nWehE++FasEwMAlUv87MLhLEVXoVvMQtKQ==", + "type": "package", + "path": "xunit.runner.utility/2.4.1-pre.build.4059", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/xunit.runner.utility.net35.dll", + "lib/net35/xunit.runner.utility.net35.xml", + "lib/net452/xunit.runner.utility.net452.dll", + "lib/net452/xunit.runner.utility.net452.xml", + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.dll", + "lib/netcoreapp1.0/xunit.runner.utility.netcoreapp10.xml", + "lib/netstandard1.1/xunit.runner.utility.netstandard11.dll", + "lib/netstandard1.1/xunit.runner.utility.netstandard11.xml", + "lib/netstandard1.5/xunit.runner.utility.netstandard15.dll", + "lib/netstandard1.5/xunit.runner.utility.netstandard15.xml", + "lib/netstandard2.0/xunit.runner.utility.netstandard20.dll", + "lib/netstandard2.0/xunit.runner.utility.netstandard20.xml", + "lib/uap10.0/xunit.runner.utility.uwp10.dll", + "lib/uap10.0/xunit.runner.utility.uwp10.pri", + "lib/uap10.0/xunit.runner.utility.uwp10.xml", + "xunit.runner.utility.2.4.1-pre.build.4059.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + ".NETStandard,Version=v1.6": [ + "Microsoft.Diagnostics.Tracing.TraceEvent >= 2.0.43", + "Microsoft.NETCore.Platforms >= 3.1.0-preview3.19551.4", + "System.Collections.NonGeneric >= 4.4.0-beta-24913-02", + "System.Console >= 4.4.0-beta-24913-02", + "System.Diagnostics.Process >= 4.4.0-beta-24913-02", + "System.IO.FileSystem >= 4.4.0-beta-24913-02", + "System.Linq >= 4.4.0-beta-24913-02", + "System.Linq.Expressions >= 4.4.0-beta-24913-02", + "System.Numerics.Vectors >= 4.5.0", + "System.Reflection >= 4.4.0-beta-24913-02", + "System.Reflection.Extensions >= 4.4.0-beta-24913-02", + "System.Reflection.TypeExtensions >= 4.7.0-preview3.19551.4", + "System.Runtime >= 4.4.0-beta-24913-02", + "System.Runtime.Extensions >= 4.4.0-beta-24913-02", + "System.Runtime.Loader >= 4.0.0", + "System.Runtime.Numerics >= 4.4.0-beta-24913-02", + "System.Security.Principal.Windows >= 4.4.0", + "System.Text.RegularExpressions >= 4.4.0-beta-24913-02", + "System.Threading >= 4.4.0-beta-24913-02", + "System.Threading.Tasks >= 4.4.0-beta-24913-02", + "System.Threading.Tasks.Parallel >= 4.4.0-beta-24913-02", + "System.Threading.Thread >= 4.4.0-beta-24913-02", + "System.Xml.XPath >= 4.4.0-beta-24913-02", + "System.Xml.XPath.XmlDocument >= 4.4.0-beta-24913-02", + "System.Xml.XmlDocument >= 4.4.0-beta-24913-02", + "xunit >= 2.4.1-pre.build.4059", + "xunit.performance.api >= 1.0.0-beta-build0015", + "xunit.performance.core >= 1.0.0-beta-build0015", + "xunit.performance.execution >= 1.0.0-beta-build0015", + "xunit.performance.metrics >= 1.0.0-beta-build0015", + "xunit.runner.console >= 2.4.1-pre.build.4059", + "xunit.runner.utility >= 2.4.1-pre.build.4059" + ] + }, + "packageFolders": { + "/home/z/Dev/coreclr-sec/.packages": {} + }, + "project": { + "version": "3.1.3", + "restore": { + "projectUniqueName": "/home/z/Dev/coreclr-sec/tests/src/performance/performance.csproj", + "projectName": "performance", + "projectPath": "/home/z/Dev/coreclr-sec/tests/src/performance/performance.csproj", + "packagesPath": "/home/z/Dev/coreclr-sec/.packages", + "outputPath": "/home/z/Dev/coreclr-sec/tests/src/performance/obj-linux-x86", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/z/Dev/coreclr-sec/NuGet.config", + "/home/z/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netstandard1.6" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json": {}, + "https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json": {}, + "https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json": {} + }, + "frameworks": { + "netstandard1.6": { + "projectReferences": {} + } + } + }, + "frameworks": { + "netstandard1.6": { + "dependencies": { + "Microsoft.Diagnostics.Tracing.TraceEvent": { + "target": "Package", + "version": "[2.0.43, )" + }, + "Microsoft.NETCore.Platforms": { + "target": "Package", + "version": "[3.1.0-preview3.19551.4, )" + }, + "System.Collections.NonGeneric": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Console": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Diagnostics.Process": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.IO.FileSystem": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Linq.Expressions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Numerics.Vectors": { + "target": "Package", + "version": "[4.5.0, )" + }, + "System.Reflection": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Reflection.TypeExtensions": { + "target": "Package", + "version": "[4.7.0-preview3.19551.4, )" + }, + "System.Runtime": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Extensions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Runtime.Loader": { + "target": "Package", + "version": "[4.0.0, )" + }, + "System.Runtime.Numerics": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Security.Principal.Windows": { + "target": "Package", + "version": "[4.4.0, )" + }, + "System.Text.RegularExpressions": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Tasks": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Tasks.Parallel": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Threading.Thread": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Xml.XPath": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Xml.XPath.XmlDocument": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "System.Xml.XmlDocument": { + "target": "Package", + "version": "[4.4.0-beta-24913-02, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.performance.api": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.core": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.execution": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.performance.metrics": { + "target": "Package", + "version": "[1.0.0-beta-build0015, )" + }, + "xunit.runner.console": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + }, + "xunit.runner.utility": { + "target": "Package", + "version": "[2.4.1-pre.build.4059, )" + } + }, + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } + }, + "runtimes": { + "linux-x86": { + "#import": [] + } + } + }, + "logs": [ + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n performance -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n performance -> xunit.performance.api 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.6/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n performance -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n performance -> xunit.performance.core 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.6/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n performance -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n performance -> xunit.performance.execution 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.6/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n performance -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n performance -> xunit.performance.metrics 1.0.0-beta-build0015 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.6/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n performance -> System.Numerics.Vectors 4.5.0 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n performance -> System.Numerics.Vectors 4.5.0 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.6/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n performance -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n performance -> xunit.runner.utility 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.6/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n performance -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n performance -> xunit 2.4.1-pre.build.4059 -> xunit.assert 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.6/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n performance -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n performance -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.core 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.6/linux-x86" + ] + }, + { + "code": "NU1605", + "level": "Warning", + "warningLevel": 1, + "message": "Detected package downgrade: System.Net.Primitives from 4.4.0-beta-24913-02 to 4.3.0. Reference the package directly from the project to select a different version. \n performance -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Sockets 4.3.0 -> runtime.unix.System.Net.Sockets 4.4.0-beta-24913-02 -> System.Net.Primitives (>= 4.4.0-beta-24913-02) \n performance -> xunit 2.4.1-pre.build.4059 -> xunit.core 2.4.1-pre.build.4059 -> xunit.extensibility.execution 2.4.1-pre.build.4059 -> NETStandard.Library 1.6.1 -> System.Net.Primitives (>= 4.3.0)", + "libraryId": "System.Net.Primitives", + "targetGraphs": [ + ".NETStandard,Version=v1.6/linux-x86" + ] + } + ] +}
\ No newline at end of file |