Index: lang/Makefile =================================================================== --- lang/Makefile +++ lang/Makefile @@ -158,6 +158,8 @@ SUBDIR += libobjc2 SUBDIR += librep SUBDIR += libstdc++_stldoc_4.2.2 + SUBDIR += linux-dotnet-runtime + SUBDIR += linux-dotnet-sdk SUBDIR += linux-c6-tcl85 SUBDIR += linux-c7-tcl85 SUBDIR += linux-j Index: lang/linux-dotnet-runtime/Makefile =================================================================== --- /dev/null +++ lang/linux-dotnet-runtime/Makefile @@ -0,0 +1,33 @@ +# Created by: David Naylor +# $FreeBSD$ + +PORTNAME= dotnet-runtime +DISTVERSION= 2.0.4 +DISTVERSIONSUFFIX= -linux-x64 +CATEGORIES= lang +MASTER_SITES?= https://download.microsoft.com/download/2/B/2/2B2854E7-7EAE-4FE9-85D2-19ACCD716F18/ +PKGNAMEPREFIX= linux- + +MAINTAINER= mono@FreeBSD.org +COMMENT= Cross-platform .NET implementation + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +ONLY_FOR_ARCHS= amd64 + +USES= linux:c7 +USE_LINUX= curl libicu libunwind lttng-ust openssl + +NO_BUILD= yes +NO_WRKSUBDIR= yes + +do-install: + cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/dotnet +.for bin in dotnet shared/Microsoft.NETCore.App/2.0.4/createdump + ${RM} ${STAGEDIR}${PREFIX}/dotnet/${bin} + ${INSTALL_PROGRAM} ${WRKSRC}/${bin} ${STAGEDIR}${PREFIX}/dotnet/${bin} +.endfor + ${LN} -s ../dotnet/dotnet ${STAGEDIR}${PREFIX}/bin/dotnet + +.include Index: lang/linux-dotnet-runtime/distinfo =================================================================== --- /dev/null +++ lang/linux-dotnet-runtime/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1515344171 +SHA256 (dotnet-runtime-2.0.4-linux-x64.tar.gz) = 9c0080bd82ea26a5721fa063885c5675071af9741693e90efeb8eea8c70ac6bc +SIZE (dotnet-runtime-2.0.4-linux-x64.tar.gz) = 26017967 Index: lang/linux-dotnet-runtime/pkg-descr =================================================================== --- /dev/null +++ lang/linux-dotnet-runtime/pkg-descr @@ -0,0 +1,21 @@ +.NET Core is a free and open-source managed software framework. It consists of +CoreCLR, a complete runtime implementation of CLR, the virtual machine that +manages the execution of .NET programs. CoreCLR comes with an improved +just-in-time compiler, called RyuJIT. .NET Core also includes CoreFX, which is +a partial fork of FCL. While .NET Core shares a subset of .NET Framework APIs, +it comes with its own API that is not part of .NET Framework. Further, +.NET Core contains CoreRT, the .NET Native runtime optimized to be integrated +into AOT compiled native binaries. A variant of the .NET Core library is used +for UWP. .NET Core's command-line interface offers an execution entry point +for operating systems and provides developer services like compilation and +package management. + +.NET Core supports four cross-platform scenarios: ASP.NET Core web apps, +command-line apps, libraries, and Universal Windows Platform apps. It does not +implement Windows Forms or WPF which render the standard GUI for desktop +software on Windows. .NET Core is also modular, meaning that instead of +assemblies, developers work with NuGet packages. Unlike .NET Framework, which +is serviced using Windows Update, .NET Core relies on its package manager to +receive updates. + +WWW: https://www.microsoft.com/net/ Index: lang/linux-dotnet-runtime/pkg-message =================================================================== --- /dev/null +++ lang/linux-dotnet-runtime/pkg-message @@ -0,0 +1,48 @@ +Telemetry +--------- +The .NET Core tools collect usage data in order to improve your experience. +The data is anonymous and does not include command-line arguments. The data is +collected by Microsoft and shared with the community. You can opt out of +telemetry by setting a DOTNET_CLI_TELEMETRY_OPTOUT environment variable to 1 +using your favorite shell. You can read more about .NET Core tools telemetry @ +https://aka.ms/dotnet-cli-telemetry. + +CA Root Certificates for NSS +---------------------------- +.NET Core requires NSS CA certificates installed. The recommended way to +install the certificates is to: + +# pkg install ca_root_nss +# ln -s /usr/local/share/certs/ca-root-nss.crt \ + /compat/linux/etc/pki/tls/certs/ca-bundle.crt + +Failed to initialize CoreCLR, HRESULT: 0x8007001F +------------------------------------------------- +.NET core may produce the above error message if the system has exceeded +capacity for wired memory, or is unprivilaged allocations of wired memory is +not permitted. + +To ensure unprivilaged allocation of wired memory is allowed, as root: + +# sysctl security.bsd.unprivilaged_mlock=1 + +To preserve this setting across reboots, append the following to +/etc/sysctl.conf: + +security.bsd.unprivilaged_mlock=1 + +To check the usage and limit of wired memory see the 'vm.stats.vm.v_wire_count' +and 'vm.max_wired' sysctl(8) respectively. To increase the wired memory +capacity set 'vm.max_wired' to a value greater than 'vm.stats.vm.v_wire_count'. +.NET Core only requires ~128k wired memory per running application. + +For example, if one has: + +# sysctl vm.stats.vm.v_wire_count +vm.stats.vm.v_wire_count: 1332146 +# sysctl vm.max_wired +vm.max_wired: 1331964 + +then increasing 'vm.max_wired' will enable .NET Core to run: + +# sysctl vm.max_wired=1333000 Index: lang/linux-dotnet-runtime/pkg-plist =================================================================== --- /dev/null +++ lang/linux-dotnet-runtime/pkg-plist @@ -0,0 +1,179 @@ +bin/dotnet +dotnet/LICENSE.txt +dotnet/ThirdPartyNotices.txt +dotnet/dotnet +dotnet/host/fxr/2.0.4/libhostfxr.so +dotnet/shared/Microsoft.NETCore.App/2.0.4/.version +dotnet/shared/Microsoft.NETCore.App/2.0.4/Microsoft.CSharp.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/Microsoft.NETCore.App.deps.json +dotnet/shared/Microsoft.NETCore.App/2.0.4/Microsoft.VisualBasic.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/Microsoft.Win32.Primitives.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/Microsoft.Win32.Registry.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/SOS.NETCore.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.AppContext.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Buffers.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Collections.Concurrent.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Collections.Immutable.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Collections.NonGeneric.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Collections.Specialized.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Collections.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.ComponentModel.Annotations.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.ComponentModel.Composition.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.ComponentModel.DataAnnotations.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.ComponentModel.EventBasedAsync.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.ComponentModel.Primitives.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.ComponentModel.TypeConverter.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.ComponentModel.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Configuration.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Console.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Core.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Data.Common.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Data.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Diagnostics.Contracts.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Diagnostics.Debug.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Diagnostics.DiagnosticSource.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Diagnostics.FileVersionInfo.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Diagnostics.Process.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Diagnostics.StackTrace.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Diagnostics.TextWriterTraceListener.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Diagnostics.Tools.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Diagnostics.TraceSource.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Diagnostics.Tracing.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Drawing.Primitives.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Drawing.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Dynamic.Runtime.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Globalization.Calendars.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Globalization.Extensions.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Globalization.Native.so +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Globalization.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.IO.Compression.FileSystem.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.IO.Compression.Native.so +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.IO.Compression.ZipFile.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.IO.Compression.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.IO.FileSystem.AccessControl.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.IO.FileSystem.DriveInfo.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.IO.FileSystem.Primitives.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.IO.FileSystem.Watcher.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.IO.FileSystem.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.IO.IsolatedStorage.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.IO.MemoryMappedFiles.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.IO.Pipes.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.IO.UnmanagedMemoryStream.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.IO.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Linq.Expressions.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Linq.Parallel.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Linq.Queryable.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Linq.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Native.a +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Native.so +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Net.Http.Native.so +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Net.Http.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Net.HttpListener.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Net.Mail.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Net.NameResolution.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Net.NetworkInformation.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Net.Ping.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Net.Primitives.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Net.Requests.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Net.Security.Native.so +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Net.Security.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Net.ServicePoint.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Net.Sockets.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Net.WebClient.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Net.WebHeaderCollection.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Net.WebProxy.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Net.WebSockets.Client.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Net.WebSockets.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Net.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Numerics.Vectors.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Numerics.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.ObjectModel.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Private.CoreLib.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Private.DataContractSerialization.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Private.Uri.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Private.Xml.Linq.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Private.Xml.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Reflection.DispatchProxy.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Reflection.Emit.ILGeneration.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Reflection.Emit.Lightweight.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Reflection.Emit.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Reflection.Extensions.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Reflection.Metadata.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Reflection.Primitives.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Reflection.TypeExtensions.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Reflection.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Resources.Reader.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Resources.ResourceManager.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Resources.Writer.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Runtime.CompilerServices.VisualC.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Runtime.Extensions.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Runtime.Handles.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Runtime.InteropServices.WindowsRuntime.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Runtime.InteropServices.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Runtime.Loader.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Runtime.Numerics.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Runtime.Serialization.Formatters.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Runtime.Serialization.Json.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Runtime.Serialization.Primitives.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Runtime.Serialization.Xml.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Runtime.Serialization.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Runtime.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Security.AccessControl.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Security.Claims.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Security.Cryptography.Algorithms.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Security.Cryptography.Cng.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Security.Cryptography.Csp.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Security.Cryptography.Encoding.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Security.Cryptography.Native.OpenSsl.so +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Security.Cryptography.OpenSsl.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Security.Cryptography.Primitives.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Security.Cryptography.X509Certificates.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Security.Principal.Windows.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Security.Principal.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Security.SecureString.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Security.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.ServiceModel.Web.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.ServiceProcess.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Text.Encoding.Extensions.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Text.Encoding.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Text.RegularExpressions.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Threading.Overlapped.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Threading.Tasks.Dataflow.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Threading.Tasks.Extensions.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Threading.Tasks.Parallel.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Threading.Tasks.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Threading.Thread.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Threading.ThreadPool.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Threading.Timer.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Threading.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Transactions.Local.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Transactions.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.ValueTuple.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Web.HttpUtility.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Web.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Windows.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Xml.Linq.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Xml.ReaderWriter.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Xml.Serialization.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Xml.XDocument.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Xml.XPath.XDocument.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Xml.XPath.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Xml.XmlDocument.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Xml.XmlSerializer.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.Xml.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/System.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/WindowsBase.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/createdump +dotnet/shared/Microsoft.NETCore.App/2.0.4/libclrjit.so +dotnet/shared/Microsoft.NETCore.App/2.0.4/libcoreclr.so +dotnet/shared/Microsoft.NETCore.App/2.0.4/libcoreclrtraceptprovider.so +dotnet/shared/Microsoft.NETCore.App/2.0.4/libdbgshim.so +dotnet/shared/Microsoft.NETCore.App/2.0.4/libhostpolicy.so +dotnet/shared/Microsoft.NETCore.App/2.0.4/libmscordaccore.so +dotnet/shared/Microsoft.NETCore.App/2.0.4/libmscordbi.so +dotnet/shared/Microsoft.NETCore.App/2.0.4/libsos.so +dotnet/shared/Microsoft.NETCore.App/2.0.4/libsosplugin.so +dotnet/shared/Microsoft.NETCore.App/2.0.4/mscorlib.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/netstandard.dll +dotnet/shared/Microsoft.NETCore.App/2.0.4/sosdocsunix.txt Index: lang/linux-dotnet-sdk/Makefile =================================================================== --- /dev/null +++ lang/linux-dotnet-sdk/Makefile @@ -0,0 +1,51 @@ +# Created by: David Naylor +# $FreeBSD$ + +PORTNAME= dotnet-sdk +DISTVERSION= 2.1.3 +DISTVERSIONSUFFIX= -linux-x64 +CATEGORIES= lang +MASTER_SITES= https://download.microsoft.com/download/2/9/3/293BC432-348C-4D1C-B628-5AC8AB7FA162/ +PKGNAMEPREFIX= linux- + +MAINTAINER= mono@FreeBSD.org +COMMENT= Cross-platform .NET implementation (Software Development Kit) + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +BUILD_DEPENDS=${LOCALBASE}/bin/lzma:archivers/lzma \ + zip:archivers/zip +RUN_DEPENDS= linux-dotnet-runtime>=2.0.4:lang/linux-dotnet-runtime + +ONLY_FOR_ARCHS= amd64 + +DESCR= ${.CURDIR}/../linux-dotnet-runtime/pkg-descr +EXTRACT_AFTER_ARGS= --no-same-owner --no-same-permissions \ + --include LICENSE.txt --include additionalDeps --include sdk --include store +NO_WRKSUBDIR= yes + +USES= linux:c7 + +do-build: + ${SETENV} \ + dp_LN=${LN} \ + dp_LZMA=${LOCALBASE}/bin/lzma \ + dp_MKDIR="${MKDIR}" \ + dp_MV=${MV} \ + dp_RM="${RM}" \ + dp_RMDIR=${RMDIR} \ + dp_SCRIPTSDIR=${SCRIPTSDIR} \ + dp_TR=${TR} \ + dp_UNZIP=${UNZIP_NATIVE_CMD} \ + ${SH} ${FILESDIR}/extract.sh \ + ${WRKSRC}/sdk/${DISTVERSION}/nuGetPackagesArchive.lzma \ + ${WRKSRC}/sdk/NuGetFallbackFolder + ${RM} ${WRKSRC}/sdk/${DISTVERSION}/nuGetPackagesArchive.lzma + ${TOUCH} ${WRKSRC}/sdk/NuGetFallbackFolder/${DISTVERSION}.dotnetSentinel + +do-install: + cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/dotnet + ${RM} ${STAGEDIR}${PREFIX}/dotnet/LICENSE.txt + +.include Index: lang/linux-dotnet-sdk/distinfo =================================================================== --- /dev/null +++ lang/linux-dotnet-sdk/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1515265201 +SHA256 (dotnet-sdk-2.1.3-linux-x64.tar.gz) = e6432b824395d88a69b77cc50427f2b5a41d44964c377125c53f02783aaa5005 +SIZE (dotnet-sdk-2.1.3-linux-x64.tar.gz) = 148274081 Index: lang/linux-dotnet-sdk/files/extract.sh =================================================================== --- /dev/null +++ lang/linux-dotnet-sdk/files/extract.sh @@ -0,0 +1,49 @@ +#!/bin/sh +# +# Extract the NuGet offline cache, recreating the nupkg zip files. +# + +set -e + +. "${dp_SCRIPTSDIR}/functions.sh" + +validate_env dp_LN dp_LZMA dp_MKDIR dp_MV dp_RM dp_RMDIR dp_TR dp_UNZIP + +set -u + +ARCHIVE="$1" +DESTDIR="$2" + +$dp_MKDIR $DESTDIR/.archive +( $dp_LZMA d $ARCHIVE /dev/stderr > /dev/null ) 2>&1 | $dp_UNZIP -qd $DESTDIR/.archive - +archives="" +while read line; do + target="${line%|*}" + source="${line#*|}" + rel_path="${target%%::*}" + entry_name="${target#*::}" + first_extract="NO" + if [ "$rel_path" != "$entry_name" ]; then + if [ -z "${entry_name##*/}" ]; then + entry_name="$entry_name${source##*/}" + fi + target="${rel_path%/*}/$entry_name" + fi + if [ ! -f $DESTDIR/$target ]; then + first_extract="YES" + $dp_MKDIR $DESTDIR/${target%/*} + $dp_LN $DESTDIR/.archive/$source $DESTDIR/$target + fi + if [ "$rel_path" != "$entry_name" ]; then + target="${rel_path%/*}/$entry_name" + cd $DESTDIR/${rel_path%/*} + zip -q9 ${rel_path##*/} $entry_name + if [ $first_extract == "YES" ]; then + $dp_RM $entry_name + $dp_RMDIR -p ${entry_name%/*} 2> /dev/null || true + fi + fi +done <<-EOF + $($dp_TR -d '\015' < $DESTDIR/.archive/index.txt) +EOF +$dp_RM -r $DESTDIR/.archive Index: lang/linux-dotnet-sdk/pkg-plist =================================================================== --- /dev/null +++ lang/linux-dotnet-sdk/pkg-plist @@ -0,0 +1,11604 @@ +dotnet/additionalDeps/Microsoft.AspNetCore.ApplicationInsights.HostingStartup/shared/Microsoft.NETCore.App/2.0.0/Microsoft.AspNetCore.ApplicationInsights.HostingStartup.deps.json +dotnet/additionalDeps/Microsoft.AspNetCore.ApplicationInsights.HostingStartup/shared/Microsoft.NETCore.App/2.0.3/Microsoft.AspNetCore.ApplicationInsights.HostingStartup.deps.json +dotnet/additionalDeps/Microsoft.AspNetCore.AzureAppServices.HostingStartup/shared/Microsoft.NETCore.App/2.0.0/Microsoft.AspNetCore.AzureAppServices.HostingStartup.deps.json +dotnet/additionalDeps/Microsoft.AspNetCore.AzureAppServices.HostingStartup/shared/Microsoft.NETCore.App/2.0.3/Microsoft.AspNetCore.AzureAppServices.HostingStartup.deps.json +dotnet/sdk/2.1.3/.version +dotnet/sdk/2.1.3/15.0/Microsoft.Common.CrossTargeting.targets/ImportAfter/Microsoft.TestPlatform.CrossTargeting.targets +dotnet/sdk/2.1.3/15.0/Microsoft.Common.props +dotnet/sdk/2.1.3/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets +dotnet/sdk/2.1.3/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.TestPlatform.ImportAfter.targets +dotnet/sdk/2.1.3/15.0/SolutionFile/ImportAfter/Microsoft.NuGet.ImportAfter.targets +dotnet/sdk/2.1.3/Extensions/Microsoft.TestPlatform.Extensions.BlameDataCollector.dll +dotnet/sdk/2.1.3/Extensions/Microsoft.TestPlatform.Extensions.EventLogCollector.dll +dotnet/sdk/2.1.3/Extensions/Microsoft.TestPlatform.TestHostRuntimeProvider.dll +dotnet/sdk/2.1.3/Extensions/Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger.dll +dotnet/sdk/2.1.3/FSharp/FSharp.Build.dll +dotnet/sdk/2.1.3/FSharp/FSharp.Compiler.Interactive.Settings.dll +dotnet/sdk/2.1.3/FSharp/FSharp.Compiler.Private.dll +dotnet/sdk/2.1.3/FSharp/FSharp.Core.dll +dotnet/sdk/2.1.3/FSharp/Microsoft.DiaSymReader.PortablePdb.dll +dotnet/sdk/2.1.3/FSharp/Microsoft.DiaSymReader.dll +dotnet/sdk/2.1.3/FSharp/Microsoft.FSharp.NetSdk.props +dotnet/sdk/2.1.3/FSharp/Microsoft.FSharp.NetSdk.targets +dotnet/sdk/2.1.3/FSharp/Microsoft.FSharp.Targets +dotnet/sdk/2.1.3/FSharp/Microsoft.Portable.FSharp.Targets +dotnet/sdk/2.1.3/FSharp/RunFsc.cmd +dotnet/sdk/2.1.3/FSharp/RunFsc.sh +dotnet/sdk/2.1.3/FSharp/default.win32manifest +dotnet/sdk/2.1.3/FSharp/fsc.deps.json +dotnet/sdk/2.1.3/FSharp/fsc.exe +dotnet/sdk/2.1.3/FSharp/fsc.runtimeconfig.json +dotnet/sdk/2.1.3/FSharp/fsi.exe +dotnet/sdk/2.1.3/MSBuild.deps.json +dotnet/sdk/2.1.3/MSBuild.dll +dotnet/sdk/2.1.3/MSBuild.runtimeconfig.json +dotnet/sdk/2.1.3/Microsoft.ApplicationInsights.dll +dotnet/sdk/2.1.3/Microsoft.Build.Framework.dll +dotnet/sdk/2.1.3/Microsoft.Build.Tasks.Core.dll +dotnet/sdk/2.1.3/Microsoft.Build.Utilities.Core.dll +dotnet/sdk/2.1.3/Microsoft.Build.dll +dotnet/sdk/2.1.3/Microsoft.CSharp.CrossTargeting.targets +dotnet/sdk/2.1.3/Microsoft.CSharp.CurrentVersion.targets +dotnet/sdk/2.1.3/Microsoft.CSharp.targets +dotnet/sdk/2.1.3/Microsoft.CodeAnalysis.CSharp.dll +dotnet/sdk/2.1.3/Microsoft.CodeAnalysis.dll +dotnet/sdk/2.1.3/Microsoft.Common.CrossTargeting.targets +dotnet/sdk/2.1.3/Microsoft.Common.CurrentVersion.targets +dotnet/sdk/2.1.3/Microsoft.Common.overridetasks +dotnet/sdk/2.1.3/Microsoft.Common.targets +dotnet/sdk/2.1.3/Microsoft.Common.tasks +dotnet/sdk/2.1.3/Microsoft.DotNet.Archive.dll +dotnet/sdk/2.1.3/Microsoft.DotNet.Cli.CommandLine.dll +dotnet/sdk/2.1.3/Microsoft.DotNet.Cli.Sln.Internal.dll +dotnet/sdk/2.1.3/Microsoft.DotNet.Cli.Utils.dll +dotnet/sdk/2.1.3/Microsoft.DotNet.Configurer.dll +dotnet/sdk/2.1.3/Microsoft.DotNet.InternalAbstractions.dll +dotnet/sdk/2.1.3/Microsoft.DotNet.PlatformAbstractions.dll +dotnet/sdk/2.1.3/Microsoft.DotNet.ProjectJsonMigration.dll +dotnet/sdk/2.1.3/Microsoft.DotNet.TestFramework.dll +dotnet/sdk/2.1.3/Microsoft.DotNet.Tools.MigrateCommand.dll +dotnet/sdk/2.1.3/Microsoft.Extensions.CommandLineUtils.dll +dotnet/sdk/2.1.3/Microsoft.Extensions.DependencyModel.dll +dotnet/sdk/2.1.3/Microsoft.NETCoreSdk.BundledVersions.props +dotnet/sdk/2.1.3/Microsoft.NETFramework.CurrentVersion.props +dotnet/sdk/2.1.3/Microsoft.NETFramework.CurrentVersion.targets +dotnet/sdk/2.1.3/Microsoft.NETFramework.props +dotnet/sdk/2.1.3/Microsoft.NETFramework.targets +dotnet/sdk/2.1.3/Microsoft.TemplateEngine.Abstractions.dll +dotnet/sdk/2.1.3/Microsoft.TemplateEngine.Cli.dll +dotnet/sdk/2.1.3/Microsoft.TemplateEngine.Core.Contracts.dll +dotnet/sdk/2.1.3/Microsoft.TemplateEngine.Core.dll +dotnet/sdk/2.1.3/Microsoft.TemplateEngine.Edge.dll +dotnet/sdk/2.1.3/Microsoft.TemplateEngine.Orchestrator.RunnableProjects.dll +dotnet/sdk/2.1.3/Microsoft.TemplateEngine.Utils.dll +dotnet/sdk/2.1.3/Microsoft.TestPlatform.Build.dll +dotnet/sdk/2.1.3/Microsoft.TestPlatform.CommunicationUtilities.dll +dotnet/sdk/2.1.3/Microsoft.TestPlatform.CoreUtilities.dll +dotnet/sdk/2.1.3/Microsoft.TestPlatform.CrossPlatEngine.dll +dotnet/sdk/2.1.3/Microsoft.TestPlatform.PlatformAbstractions.deps.json +dotnet/sdk/2.1.3/Microsoft.TestPlatform.PlatformAbstractions.dll +dotnet/sdk/2.1.3/Microsoft.TestPlatform.Utilities.dll +dotnet/sdk/2.1.3/Microsoft.TestPlatform.VsTestConsole.TranslationLayer.dll +dotnet/sdk/2.1.3/Microsoft.TestPlatform.VsTestConsole.TranslationLayer.xml +dotnet/sdk/2.1.3/Microsoft.TestPlatform.targets +dotnet/sdk/2.1.3/Microsoft.VisualBasic.CrossTargeting.targets +dotnet/sdk/2.1.3/Microsoft.VisualBasic.CurrentVersion.targets +dotnet/sdk/2.1.3/Microsoft.VisualBasic.targets +dotnet/sdk/2.1.3/Microsoft.VisualStudio.TestPlatform.Client.dll +dotnet/sdk/2.1.3/Microsoft.VisualStudio.TestPlatform.Common.dll +dotnet/sdk/2.1.3/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll +dotnet/sdk/2.1.3/Microsoft.VisualStudioVersion.v11.Common.props +dotnet/sdk/2.1.3/Microsoft.VisualStudioVersion.v12.Common.props +dotnet/sdk/2.1.3/Microsoft.VisualStudioVersion.v14.Common.props +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.ConflictResolution.targets +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.NETFramework.targets +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/Microsoft.Win32.Primitives.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.AppContext.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Collections.Concurrent.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Collections.NonGeneric.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Collections.Specialized.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Collections.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.ComponentModel.EventBasedAsync.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.ComponentModel.Primitives.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.ComponentModel.TypeConverter.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.ComponentModel.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Console.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Data.Common.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Diagnostics.Contracts.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Diagnostics.Debug.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Diagnostics.FileVersionInfo.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Diagnostics.Process.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Diagnostics.StackTrace.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Diagnostics.TextWriterTraceListener.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Diagnostics.Tools.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Diagnostics.TraceSource.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Diagnostics.Tracing.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Drawing.Primitives.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Dynamic.Runtime.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Globalization.Calendars.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Globalization.Extensions.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Globalization.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.IO.Compression.ZipFile.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.IO.Compression.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.IO.FileSystem.DriveInfo.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.IO.FileSystem.Primitives.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.IO.FileSystem.Watcher.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.IO.FileSystem.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.IO.IsolatedStorage.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.IO.MemoryMappedFiles.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.IO.Pipes.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.IO.UnmanagedMemoryStream.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.IO.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Linq.Expressions.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Linq.Parallel.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Linq.Queryable.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Linq.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Net.Http.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Net.NameResolution.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Net.NetworkInformation.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Net.Ping.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Net.Primitives.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Net.Requests.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Net.Security.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Net.Sockets.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Net.WebHeaderCollection.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Net.WebSockets.Client.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Net.WebSockets.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.ObjectModel.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Reflection.Extensions.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Reflection.Primitives.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Reflection.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Resources.Reader.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Resources.ResourceManager.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Resources.Writer.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Runtime.CompilerServices.VisualC.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Runtime.Extensions.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Runtime.Handles.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Runtime.InteropServices.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Runtime.Numerics.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Runtime.Serialization.Formatters.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Runtime.Serialization.Json.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Runtime.Serialization.Primitives.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Runtime.Serialization.Xml.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Runtime.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Security.Claims.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Security.Cryptography.Csp.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Security.Cryptography.Encoding.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Security.Cryptography.Primitives.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Security.Principal.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Security.SecureString.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Text.Encoding.Extensions.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Text.Encoding.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Text.RegularExpressions.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Threading.Overlapped.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Threading.Tasks.Parallel.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Threading.Tasks.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Threading.Thread.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Threading.ThreadPool.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Threading.Timer.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Threading.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.ValueTuple.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Xml.ReaderWriter.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Xml.XDocument.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Xml.XPath.XDocument.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Xml.XPath.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Xml.XmlDocument.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/System.Xml.XmlSerializer.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/netfx.force.conflicts.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net461/lib/netstandard.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net462/lib/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net47/lib/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net47/lib/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net47/lib/System.ValueTuple.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net471/_._ +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net471/lib/System.Data.Common.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net471/lib/System.Diagnostics.StackTrace.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net471/lib/System.Diagnostics.Tracing.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net471/lib/System.Globalization.Extensions.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net471/lib/System.IO.Compression.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net471/lib/System.Net.Http.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net471/lib/System.Net.Sockets.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net471/lib/System.Runtime.Serialization.Primitives.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net471/lib/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net471/lib/System.Security.SecureString.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net471/lib/System.Threading.Overlapped.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/net471/lib/System.Xml.XPath.XDocument.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/tools/netcoreapp1.0/Microsoft.NET.Build.Extensions.Tasks.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/tools/netcoreapp1.0/System.Buffers.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/tools/netcoreapp1.0/System.Collections.Immutable.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/tools/netcoreapp1.0/System.Linq.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/tools/netcoreapp1.0/System.Reflection.Metadata.dll +dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/tools/netcoreapp1.0/System.Threading.dll +dotnet/sdk/2.1.3/Newtonsoft.Json.dll +dotnet/sdk/2.1.3/NuGet.Build.Tasks.dll +dotnet/sdk/2.1.3/NuGet.CommandLine.XPlat.deps.json +dotnet/sdk/2.1.3/NuGet.CommandLine.XPlat.dll +dotnet/sdk/2.1.3/NuGet.CommandLine.XPlat.runtimeconfig.json +dotnet/sdk/2.1.3/NuGet.Commands.dll +dotnet/sdk/2.1.3/NuGet.Common.dll +dotnet/sdk/2.1.3/NuGet.Configuration.dll +dotnet/sdk/2.1.3/NuGet.DependencyResolver.Core.dll +dotnet/sdk/2.1.3/NuGet.Frameworks.dll +dotnet/sdk/2.1.3/NuGet.LibraryModel.dll +dotnet/sdk/2.1.3/NuGet.Packaging.Core.dll +dotnet/sdk/2.1.3/NuGet.Packaging.dll +dotnet/sdk/2.1.3/NuGet.ProjectModel.dll +dotnet/sdk/2.1.3/NuGet.Protocol.dll +dotnet/sdk/2.1.3/NuGet.Versioning.dll +dotnet/sdk/2.1.3/NuGet.targets +dotnet/sdk/2.1.3/Roslyn/Microsoft.Build.Tasks.CodeAnalysis.dll +dotnet/sdk/2.1.3/Roslyn/Microsoft.CSharp.Core.targets +dotnet/sdk/2.1.3/Roslyn/Microsoft.VisualBasic.Core.targets +dotnet/sdk/2.1.3/Roslyn/bincore/Microsoft.CodeAnalysis.CSharp.dll +dotnet/sdk/2.1.3/Roslyn/bincore/Microsoft.CodeAnalysis.VisualBasic.dll +dotnet/sdk/2.1.3/Roslyn/bincore/Microsoft.CodeAnalysis.dll +dotnet/sdk/2.1.3/Roslyn/bincore/RunCsc +dotnet/sdk/2.1.3/Roslyn/bincore/RunCsc.cmd +dotnet/sdk/2.1.3/Roslyn/bincore/RunVbc +dotnet/sdk/2.1.3/Roslyn/bincore/RunVbc.cmd +dotnet/sdk/2.1.3/Roslyn/bincore/csc.deps.json +dotnet/sdk/2.1.3/Roslyn/bincore/csc.dll +dotnet/sdk/2.1.3/Roslyn/bincore/csc.runtimeconfig.json +dotnet/sdk/2.1.3/Roslyn/bincore/runtimes/unix/lib/netstandard1.3/System.IO.Pipes.AccessControl.dll +dotnet/sdk/2.1.3/Roslyn/bincore/runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll +dotnet/sdk/2.1.3/Roslyn/bincore/runtimes/win-x64/native/Microsoft.DiaSymReader.Native.amd64.dll +dotnet/sdk/2.1.3/Roslyn/bincore/runtimes/win-x86/native/Microsoft.DiaSymReader.Native.x86.dll +dotnet/sdk/2.1.3/Roslyn/bincore/runtimes/win/lib/netstandard1.3/System.IO.Pipes.AccessControl.dll +dotnet/sdk/2.1.3/Roslyn/bincore/runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll +dotnet/sdk/2.1.3/Roslyn/bincore/runtimes/win/native/Microsoft.DiaSymReader.Native.amd64.dll +dotnet/sdk/2.1.3/Roslyn/bincore/runtimes/win/native/Microsoft.DiaSymReader.Native.arm.dll +dotnet/sdk/2.1.3/Roslyn/bincore/runtimes/win/native/Microsoft.DiaSymReader.Native.x86.dll +dotnet/sdk/2.1.3/Roslyn/bincore/runtimes/win8-arm/native/Microsoft.DiaSymReader.Native.arm.dll +dotnet/sdk/2.1.3/Roslyn/bincore/vbc.deps.json +dotnet/sdk/2.1.3/Roslyn/bincore/vbc.dll +dotnet/sdk/2.1.3/Roslyn/bincore/vbc.runtimeconfig.json +dotnet/sdk/2.1.3/Sdks/FSharp.NET.Sdk/Sdk/Sdk.OnRestore.targets +dotnet/sdk/2.1.3/Sdks/FSharp.NET.Sdk/Sdk/Sdk.props +dotnet/sdk/2.1.3/Sdks/FSharp.NET.Sdk/Sdk/Sdk.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Publish/Sdk/Sdk.props +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Publish/Sdk/Sdk.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Publish/build/netstandard1.0/ComputeTargets/Microsoft.NET.Sdk.Publish.ComputeFiles.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Publish/build/netstandard1.0/CopyTargets/Microsoft.NET.Sdk.Publish.CopyFiles.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Publish/build/netstandard1.0/DotNetCLIToolTargets/Microsoft.NET.Sdk.DotNetCLITool.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Publish/build/netstandard1.0/Microsoft.NET.Sdk.Publish.props +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Publish/build/netstandard1.0/Microsoft.NET.Sdk.Publish.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Publish/build/netstandard1.0/PublishProfiles/FileSystem.pubxml +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Publish/build/netstandard1.0/PublishProfiles/MSDeploy.pubxml +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Publish/build/netstandard1.0/PublishProfiles/MSDeployPackage.pubxml +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Publish/build/netstandard1.0/PublishTargets/Microsoft.NET.Sdk.Publish.Docker.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Publish/build/netstandard1.0/PublishTargets/Microsoft.NET.Sdk.Publish.FileSystem.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Publish/build/netstandard1.0/PublishTargets/Microsoft.NET.Sdk.Publish.Kudu.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Publish/build/netstandard1.0/PublishTargets/Microsoft.NET.Sdk.Publish.MSDeploy.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Publish/build/netstandard1.0/PublishTargets/Microsoft.NET.Sdk.Publish.MSDeployPackage.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Publish/build/netstandard1.0/TransformTargets/Microsoft.NET.Sdk.Publish.TransformFiles.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Publish/tools/net46/Microsoft.NET.Sdk.Publish.Tasks.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Publish/tools/net46/Microsoft.Web.Delegation.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Publish/tools/net46/Microsoft.Web.Deployment.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Publish/tools/net46/Newtonsoft.Json.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Publish/tools/netcoreapp1.0/Microsoft.NET.Sdk.Publish.Tasks.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Publish/tools/netcoreapp1.0/Newtonsoft.Json.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Web.ProjectSystem/Sdk/Sdk.props +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Web.ProjectSystem/Sdk/Sdk.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Web.ProjectSystem/build/netstandard1.0/Microsoft.NET.Sdk.Web.ProjectSystem.props +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Web.ProjectSystem/build/netstandard1.0/Microsoft.NET.Sdk.Web.ProjectSystem.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Web/Sdk/Sdk.props +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Web/Sdk/Sdk.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/GenerateDeps/GenerateDeps.proj +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ComposeStore.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ConflictResolution.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.CrossGen.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DisableStandardFrameworkResolution.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.GenerateAssemblyInfo.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.PreserveCompilationContext.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Publish.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommonCrossTargeting.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.FSharp.props +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.FSharp.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.VisualBasic.props +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.VisualBasic.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/buildCrossTargeting/Microsoft.NET.Sdk.targets +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/net46/Microsoft.DotNet.PlatformAbstractions.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/net46/Microsoft.Extensions.DependencyModel.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/net46/Microsoft.NET.Build.Tasks.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/net46/Newtonsoft.Json.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/net46/NuGet.Common.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/net46/NuGet.Configuration.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/net46/NuGet.DependencyResolver.Core.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/net46/NuGet.Frameworks.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/net46/NuGet.LibraryModel.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/net46/NuGet.Packaging.Core.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/net46/NuGet.Packaging.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/net46/NuGet.ProjectModel.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/net46/NuGet.Protocol.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/net46/NuGet.Versioning.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/Microsoft.DotNet.PlatformAbstractions.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/Microsoft.Extensions.DependencyModel.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/Microsoft.NET.Build.Tasks.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/Newtonsoft.Json.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/NuGet.Common.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/NuGet.Configuration.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/NuGet.DependencyResolver.Core.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/NuGet.Frameworks.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/NuGet.LibraryModel.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/NuGet.Packaging.Core.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/NuGet.Packaging.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/NuGet.ProjectModel.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/NuGet.Protocol.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/NuGet.Versioning.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/System.Buffers.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/System.Collections.Immutable.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/System.Linq.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/System.Reflection.Metadata.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/System.Runtime.Serialization.Primitives.dll +dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/System.Threading.dll +dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/CoreCLR/NuGet.Build.Tasks.Pack.dll +dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/CoreCLR/NuGet.Build.Tasks.Pack.xml +dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/Desktop/NuGet.Build.Tasks.Pack.dll +dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/Desktop/NuGet.Build.Tasks.Pack.xml +dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/build/NuGet.Build.Tasks.Pack.targets +dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/buildCrossTargeting/NuGet.Build.Tasks.Pack.targets +dotnet/sdk/2.1.3/System.Xml.XPath.XmlDocument.dll +dotnet/sdk/2.1.3/Templates/microsoft.dotnet.common.itemtemplates.1.0.0-beta3-20171117-314.nupkg +dotnet/sdk/2.1.3/Templates/microsoft.dotnet.common.projecttemplates.2.0.1.0.0-beta3-20171110-312.nupkg +dotnet/sdk/2.1.3/Templates/microsoft.dotnet.test.projecttemplates.2.0.1.0.0-beta3-20171117-314.nupkg +dotnet/sdk/2.1.3/Templates/microsoft.dotnet.web.itemtemplates.2.0.3.nupkg +dotnet/sdk/2.1.3/Templates/microsoft.dotnet.web.projecttemplates.2.0.2.0.3.nupkg +dotnet/sdk/2.1.3/Templates/microsoft.dotnet.web.spa.projecttemplates.2.0.3.nupkg +dotnet/sdk/2.1.3/TestHost/Microsoft.TestPlatform.CommunicationUtilities.dll +dotnet/sdk/2.1.3/TestHost/Microsoft.TestPlatform.CoreUtilities.dll +dotnet/sdk/2.1.3/TestHost/Microsoft.TestPlatform.CrossPlatEngine.dll +dotnet/sdk/2.1.3/TestHost/Microsoft.TestPlatform.PlatformAbstractions.dll +dotnet/sdk/2.1.3/TestHost/Microsoft.TestPlatform.Utilities.dll +dotnet/sdk/2.1.3/TestHost/Microsoft.VisualStudio.TestPlatform.Common.dll +dotnet/sdk/2.1.3/TestHost/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll +dotnet/sdk/2.1.3/TestHost/Newtonsoft.Json.dll +dotnet/sdk/2.1.3/TestHost/System.Collections.Immutable.dll +dotnet/sdk/2.1.3/TestHost/System.Reflection.Metadata.dll +dotnet/sdk/2.1.3/TestHost/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/2.1.3/TestHost/datacollector.exe +dotnet/sdk/2.1.3/TestHost/datacollector.exe.config +dotnet/sdk/2.1.3/TestHost/testhost.exe +dotnet/sdk/2.1.3/TestHost/testhost.exe.config +dotnet/sdk/2.1.3/TestHost/testhost.x86.exe +dotnet/sdk/2.1.3/TestHost/testhost.x86.exe.config +dotnet/sdk/2.1.3/TestHost/x64/msdia140.dll +dotnet/sdk/2.1.3/TestHost/x64/msdia140.dll.manifest +dotnet/sdk/2.1.3/TestHost/x86/msdia140.dll +dotnet/sdk/2.1.3/TestHost/x86/msdia140.dll.manifest +dotnet/sdk/2.1.3/datacollector.deps.json +dotnet/sdk/2.1.3/datacollector.dll +dotnet/sdk/2.1.3/datacollector.dll.config +dotnet/sdk/2.1.3/datacollector.runtimeconfig.json +dotnet/sdk/2.1.3/dotnet.deps.json +dotnet/sdk/2.1.3/dotnet.dll +dotnet/sdk/2.1.3/dotnet.runtimeconfig.json +dotnet/sdk/2.1.3/minimumMSBuildVersion +dotnet/sdk/2.1.3/package.deps.json +dotnet/sdk/2.1.3/runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll +dotnet/sdk/2.1.3/runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll +dotnet/sdk/2.1.3/runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll +dotnet/sdk/2.1.3/runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll +dotnet/sdk/2.1.3/vstest.console.deps.json +dotnet/sdk/2.1.3/vstest.console.dll +dotnet/sdk/2.1.3/vstest.console.dll.config +dotnet/sdk/2.1.3/vstest.console.runtimeconfig.json +dotnet/sdk/NuGetFallbackFolder/.tools/microsoft.dotnet.watcher.tools/2.0.0/netcoreapp2.0/microsoft.dotnet.watcher.tools.nuget.cache +dotnet/sdk/NuGetFallbackFolder/.tools/microsoft.dotnet.watcher.tools/2.0.0/netcoreapp2.0/project.assets.json +dotnet/sdk/NuGetFallbackFolder/.tools/microsoft.entityframeworkcore.tools.dotnet/2.0.1/netcoreapp2.0/microsoft.entityframeworkcore.tools.dotnet.nuget.cache +dotnet/sdk/NuGetFallbackFolder/.tools/microsoft.entityframeworkcore.tools.dotnet/2.0.1/netcoreapp2.0/project.assets.json +dotnet/sdk/NuGetFallbackFolder/.tools/microsoft.extensions.caching.sqlconfig.tools/2.0.0/netcoreapp2.0/microsoft.extensions.caching.sqlconfig.tools.nuget.cache +dotnet/sdk/NuGetFallbackFolder/.tools/microsoft.extensions.caching.sqlconfig.tools/2.0.0/netcoreapp2.0/project.assets.json +dotnet/sdk/NuGetFallbackFolder/.tools/microsoft.extensions.secretmanager.tools/2.0.0/netcoreapp2.0/microsoft.extensions.secretmanager.tools.nuget.cache +dotnet/sdk/NuGetFallbackFolder/.tools/microsoft.extensions.secretmanager.tools/2.0.0/netcoreapp2.0/project.assets.json +dotnet/sdk/NuGetFallbackFolder/.tools/microsoft.visualstudio.web.codegeneration.tools/2.0.1/netcoreapp2.0/microsoft.visualstudio.web.codegeneration.tools.nuget.cache +dotnet/sdk/NuGetFallbackFolder/.tools/microsoft.visualstudio.web.codegeneration.tools/2.0.1/netcoreapp2.0/project.assets.json +dotnet/sdk/NuGetFallbackFolder/2.1.3.dotnetSentinel +dotnet/sdk/NuGetFallbackFolder/libuv/1.10.0/License.txt +dotnet/sdk/NuGetFallbackFolder/libuv/1.10.0/libuv.1.10.0.nupkg +dotnet/sdk/NuGetFallbackFolder/libuv/1.10.0/libuv.1.10.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/libuv/1.10.0/libuv.nuspec +dotnet/sdk/NuGetFallbackFolder/libuv/1.10.0/runtimes/linux-arm/native/libuv.so +dotnet/sdk/NuGetFallbackFolder/libuv/1.10.0/runtimes/linux-arm64/native/libuv.so +dotnet/sdk/NuGetFallbackFolder/libuv/1.10.0/runtimes/linux-armel/native/libuv.so +dotnet/sdk/NuGetFallbackFolder/libuv/1.10.0/runtimes/linux-x64/native/libuv.so +dotnet/sdk/NuGetFallbackFolder/libuv/1.10.0/runtimes/osx/native/libuv.dylib +dotnet/sdk/NuGetFallbackFolder/libuv/1.10.0/runtimes/win-arm/native/libuv.dll +dotnet/sdk/NuGetFallbackFolder/libuv/1.10.0/runtimes/win-x64/native/libuv.dll +dotnet/sdk/NuGetFallbackFolder/libuv/1.10.0/runtimes/win-x86/native/libuv.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights.aspnetcore/2.1.1/lib/net451/Microsoft.ApplicationInsights.AspNetCore.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights.aspnetcore/2.1.1/lib/net451/Microsoft.ApplicationInsights.AspNetCore.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights.aspnetcore/2.1.1/lib/netstandard1.6/Microsoft.ApplicationInsights.AspNetCore.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights.aspnetcore/2.1.1/lib/netstandard1.6/Microsoft.ApplicationInsights.AspNetCore.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights.aspnetcore/2.1.1/microsoft.applicationinsights.aspnetcore.2.1.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights.aspnetcore/2.1.1/microsoft.applicationinsights.aspnetcore.2.1.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights.aspnetcore/2.1.1/microsoft.applicationinsights.aspnetcore.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights.dependencycollector/2.4.1/content/ApplicationInsights.config.install.xdt +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights.dependencycollector/2.4.1/content/ApplicationInsights.config.transform +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights.dependencycollector/2.4.1/content/ApplicationInsights.config.uninstall.xdt +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights.dependencycollector/2.4.1/lib/net40/Microsoft.AI.DependencyCollector.XML +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights.dependencycollector/2.4.1/lib/net40/Microsoft.AI.DependencyCollector.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights.dependencycollector/2.4.1/lib/net45/Microsoft.AI.DependencyCollector.XML +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights.dependencycollector/2.4.1/lib/net45/Microsoft.AI.DependencyCollector.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights.dependencycollector/2.4.1/lib/netstandard1.6/Microsoft.AI.DependencyCollector.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights.dependencycollector/2.4.1/lib/netstandard1.6/Microsoft.AI.DependencyCollector.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights.dependencycollector/2.4.1/microsoft.applicationinsights.dependencycollector.2.4.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights.dependencycollector/2.4.1/microsoft.applicationinsights.dependencycollector.2.4.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights.dependencycollector/2.4.1/microsoft.applicationinsights.dependencycollector.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights/2.4.0/lib/net40/Microsoft.ApplicationInsights.XML +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights/2.4.0/lib/net40/Microsoft.ApplicationInsights.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights/2.4.0/lib/net45/Microsoft.ApplicationInsights.XML +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights/2.4.0/lib/net45/Microsoft.ApplicationInsights.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights/2.4.0/lib/net46/Microsoft.ApplicationInsights.XML +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights/2.4.0/lib/net46/Microsoft.ApplicationInsights.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights/2.4.0/lib/netstandard1.3/Microsoft.ApplicationInsights.XML +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights/2.4.0/lib/netstandard1.3/Microsoft.ApplicationInsights.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights/2.4.0/lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights/2.4.0/lib/uap10.0/Microsoft.ApplicationInsights.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights/2.4.0/lib/wp8/Microsoft.ApplicationInsights.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights/2.4.0/microsoft.applicationinsights.2.4.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights/2.4.0/microsoft.applicationinsights.2.4.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.applicationinsights/2.4.0/microsoft.applicationinsights.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.all/2.0.3/build/PublishWithAspNetCoreTargetManifest.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.all/2.0.3/build/aspnetcore-store-2.0.0-common.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.all/2.0.3/build/aspnetcore-store-2.0.0-linux-x64.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.all/2.0.3/build/aspnetcore-store-2.0.0-osx-x64.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.all/2.0.3/build/aspnetcore-store-2.0.0-win7-x64.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.all/2.0.3/build/aspnetcore-store-2.0.0-win7-x86.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.all/2.0.3/build/aspnetcore-store-2.0.3.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.all/2.0.3/build/netcoreapp2.0/Microsoft.AspNetCore.All.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.all/2.0.3/lib/netcoreapp2.0/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.all/2.0.3/microsoft.aspnetcore.all.2.0.3.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.all/2.0.3/microsoft.aspnetcore.all.2.0.3.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.all/2.0.3/microsoft.aspnetcore.all.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.antiforgery/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.antiforgery/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.antiforgery/2.0.1/microsoft.aspnetcore.antiforgery.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.antiforgery/2.0.1/microsoft.aspnetcore.antiforgery.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.antiforgery/2.0.1/microsoft.aspnetcore.antiforgery.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.applicationinsights.hostingstartup/2.0.1/lib/net461/Microsoft.AspNetCore.ApplicationInsights.HostingStartup.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.applicationinsights.hostingstartup/2.0.1/lib/net461/Microsoft.AspNetCore.ApplicationInsights.HostingStartup.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.applicationinsights.hostingstartup/2.0.1/lib/netcoreapp2.0/Microsoft.AspNetCore.ApplicationInsights.HostingStartup.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.applicationinsights.hostingstartup/2.0.1/lib/netcoreapp2.0/Microsoft.AspNetCore.ApplicationInsights.HostingStartup.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.applicationinsights.hostingstartup/2.0.1/microsoft.aspnetcore.applicationinsights.hostingstartup.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.applicationinsights.hostingstartup/2.0.1/microsoft.aspnetcore.applicationinsights.hostingstartup.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.applicationinsights.hostingstartup/2.0.1/microsoft.aspnetcore.applicationinsights.hostingstartup.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.abstractions/2.0.1/microsoft.aspnetcore.authentication.abstractions.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.abstractions/2.0.1/microsoft.aspnetcore.authentication.abstractions.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.abstractions/2.0.1/microsoft.aspnetcore.authentication.abstractions.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.cookies/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Cookies.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.cookies/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Cookies.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.cookies/2.0.1/microsoft.aspnetcore.authentication.cookies.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.cookies/2.0.1/microsoft.aspnetcore.authentication.cookies.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.cookies/2.0.1/microsoft.aspnetcore.authentication.cookies.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.core/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.core/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.core/2.0.1/microsoft.aspnetcore.authentication.core.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.core/2.0.1/microsoft.aspnetcore.authentication.core.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.core/2.0.1/microsoft.aspnetcore.authentication.core.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.facebook/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Facebook.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.facebook/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Facebook.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.facebook/2.0.1/microsoft.aspnetcore.authentication.facebook.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.facebook/2.0.1/microsoft.aspnetcore.authentication.facebook.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.facebook/2.0.1/microsoft.aspnetcore.authentication.facebook.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.google/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Google.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.google/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Google.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.google/2.0.1/microsoft.aspnetcore.authentication.google.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.google/2.0.1/microsoft.aspnetcore.authentication.google.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.google/2.0.1/microsoft.aspnetcore.authentication.google.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.jwtbearer/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.jwtbearer/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.jwtbearer/2.0.1/microsoft.aspnetcore.authentication.jwtbearer.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.jwtbearer/2.0.1/microsoft.aspnetcore.authentication.jwtbearer.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.jwtbearer/2.0.1/microsoft.aspnetcore.authentication.jwtbearer.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.microsoftaccount/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.microsoftaccount/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.MicrosoftAccount.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.microsoftaccount/2.0.1/microsoft.aspnetcore.authentication.microsoftaccount.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.microsoftaccount/2.0.1/microsoft.aspnetcore.authentication.microsoftaccount.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.microsoftaccount/2.0.1/microsoft.aspnetcore.authentication.microsoftaccount.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.oauth/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OAuth.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.oauth/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OAuth.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.oauth/2.0.1/microsoft.aspnetcore.authentication.oauth.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.oauth/2.0.1/microsoft.aspnetcore.authentication.oauth.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.oauth/2.0.1/microsoft.aspnetcore.authentication.oauth.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.openidconnect/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.openidconnect/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.openidconnect/2.0.1/microsoft.aspnetcore.authentication.openidconnect.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.openidconnect/2.0.1/microsoft.aspnetcore.authentication.openidconnect.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.openidconnect/2.0.1/microsoft.aspnetcore.authentication.openidconnect.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.twitter/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Twitter.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.twitter/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Twitter.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.twitter/2.0.1/microsoft.aspnetcore.authentication.twitter.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.twitter/2.0.1/microsoft.aspnetcore.authentication.twitter.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication.twitter/2.0.1/microsoft.aspnetcore.authentication.twitter.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication/2.0.1/microsoft.aspnetcore.authentication.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication/2.0.1/microsoft.aspnetcore.authentication.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authentication/2.0.1/microsoft.aspnetcore.authentication.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authorization.policy/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authorization.policy/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authorization.policy/2.0.1/microsoft.aspnetcore.authorization.policy.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authorization.policy/2.0.1/microsoft.aspnetcore.authorization.policy.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authorization.policy/2.0.1/microsoft.aspnetcore.authorization.policy.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authorization/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authorization/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authorization/2.0.1/microsoft.aspnetcore.authorization.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authorization/2.0.1/microsoft.aspnetcore.authorization.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.authorization/2.0.1/microsoft.aspnetcore.authorization.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.azureappservices.hostingstartup/2.0.1/lib/net461/Microsoft.AspNetCore.AzureAppServices.HostingStartup.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.azureappservices.hostingstartup/2.0.1/lib/net461/Microsoft.AspNetCore.AzureAppServices.HostingStartup.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.azureappservices.hostingstartup/2.0.1/lib/netcoreapp2.0/Microsoft.AspNetCore.AzureAppServices.HostingStartup.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.azureappservices.hostingstartup/2.0.1/lib/netcoreapp2.0/Microsoft.AspNetCore.AzureAppServices.HostingStartup.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.azureappservices.hostingstartup/2.0.1/microsoft.aspnetcore.azureappservices.hostingstartup.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.azureappservices.hostingstartup/2.0.1/microsoft.aspnetcore.azureappservices.hostingstartup.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.azureappservices.hostingstartup/2.0.1/microsoft.aspnetcore.azureappservices.hostingstartup.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.azureappservicesintegration/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.AzureAppServicesIntegration.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.azureappservicesintegration/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.AzureAppServicesIntegration.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.azureappservicesintegration/2.0.1/microsoft.aspnetcore.azureappservicesintegration.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.azureappservicesintegration/2.0.1/microsoft.aspnetcore.azureappservicesintegration.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.azureappservicesintegration/2.0.1/microsoft.aspnetcore.azureappservicesintegration.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.cookiepolicy/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.CookiePolicy.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.cookiepolicy/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.CookiePolicy.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.cookiepolicy/2.0.1/microsoft.aspnetcore.cookiepolicy.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.cookiepolicy/2.0.1/microsoft.aspnetcore.cookiepolicy.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.cookiepolicy/2.0.1/microsoft.aspnetcore.cookiepolicy.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.cors/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.cors/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Cors.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.cors/2.0.1/microsoft.aspnetcore.cors.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.cors/2.0.1/microsoft.aspnetcore.cors.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.cors/2.0.1/microsoft.aspnetcore.cors.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.cryptography.internal/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.cryptography.internal/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.cryptography.internal/2.0.1/microsoft.aspnetcore.cryptography.internal.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.cryptography.internal/2.0.1/microsoft.aspnetcore.cryptography.internal.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.cryptography.internal/2.0.1/microsoft.aspnetcore.cryptography.internal.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.cryptography.keyderivation/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.cryptography.keyderivation/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.cryptography.keyderivation/2.0.1/microsoft.aspnetcore.cryptography.keyderivation.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.cryptography.keyderivation/2.0.1/microsoft.aspnetcore.cryptography.keyderivation.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.cryptography.keyderivation/2.0.1/microsoft.aspnetcore.cryptography.keyderivation.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.dataprotection.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.dataprotection.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.dataprotection.abstractions/2.0.1/microsoft.aspnetcore.dataprotection.abstractions.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.dataprotection.abstractions/2.0.1/microsoft.aspnetcore.dataprotection.abstractions.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.dataprotection.abstractions/2.0.1/microsoft.aspnetcore.dataprotection.abstractions.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.dataprotection.azurestorage/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.AzureStorage.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.dataprotection.azurestorage/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.AzureStorage.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.dataprotection.azurestorage/2.0.1/microsoft.aspnetcore.dataprotection.azurestorage.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.dataprotection.azurestorage/2.0.1/microsoft.aspnetcore.dataprotection.azurestorage.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.dataprotection.azurestorage/2.0.1/microsoft.aspnetcore.dataprotection.azurestorage.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.dataprotection.extensions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.dataprotection.extensions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.dataprotection.extensions/2.0.1/microsoft.aspnetcore.dataprotection.extensions.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.dataprotection.extensions/2.0.1/microsoft.aspnetcore.dataprotection.extensions.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.dataprotection.extensions/2.0.1/microsoft.aspnetcore.dataprotection.extensions.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.dataprotection/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.dataprotection/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.dataprotection/2.0.1/microsoft.aspnetcore.dataprotection.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.dataprotection/2.0.1/microsoft.aspnetcore.dataprotection.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.dataprotection/2.0.1/microsoft.aspnetcore.dataprotection.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.diagnostics.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.diagnostics.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.diagnostics.abstractions/2.0.1/microsoft.aspnetcore.diagnostics.abstractions.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.diagnostics.abstractions/2.0.1/microsoft.aspnetcore.diagnostics.abstractions.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.diagnostics.abstractions/2.0.1/microsoft.aspnetcore.diagnostics.abstractions.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.diagnostics.entityframeworkcore/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.diagnostics.entityframeworkcore/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.diagnostics.entityframeworkcore/2.0.1/microsoft.aspnetcore.diagnostics.entityframeworkcore.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.diagnostics.entityframeworkcore/2.0.1/microsoft.aspnetcore.diagnostics.entityframeworkcore.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.diagnostics.entityframeworkcore/2.0.1/microsoft.aspnetcore.diagnostics.entityframeworkcore.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.diagnostics/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.diagnostics/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.diagnostics/2.0.1/microsoft.aspnetcore.diagnostics.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.diagnostics/2.0.1/microsoft.aspnetcore.diagnostics.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.diagnostics/2.0.1/microsoft.aspnetcore.diagnostics.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.hosting.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.hosting.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.hosting.abstractions/2.0.1/microsoft.aspnetcore.hosting.abstractions.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.hosting.abstractions/2.0.1/microsoft.aspnetcore.hosting.abstractions.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.hosting.abstractions/2.0.1/microsoft.aspnetcore.hosting.abstractions.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.hosting.server.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.hosting.server.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.hosting.server.abstractions/2.0.1/microsoft.aspnetcore.hosting.server.abstractions.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.hosting.server.abstractions/2.0.1/microsoft.aspnetcore.hosting.server.abstractions.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.hosting.server.abstractions/2.0.1/microsoft.aspnetcore.hosting.server.abstractions.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.hosting/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.hosting/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Hosting.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.hosting/2.0.1/microsoft.aspnetcore.hosting.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.hosting/2.0.1/microsoft.aspnetcore.hosting.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.hosting/2.0.1/microsoft.aspnetcore.hosting.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.html.abstractions/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.html.abstractions/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.html.abstractions/2.0.0/microsoft.aspnetcore.html.abstractions.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.html.abstractions/2.0.0/microsoft.aspnetcore.html.abstractions.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.html.abstractions/2.0.0/microsoft.aspnetcore.html.abstractions.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.http.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.http.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.http.abstractions/2.0.1/microsoft.aspnetcore.http.abstractions.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.http.abstractions/2.0.1/microsoft.aspnetcore.http.abstractions.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.http.abstractions/2.0.1/microsoft.aspnetcore.http.abstractions.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.http.extensions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.http.extensions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.http.extensions/2.0.1/microsoft.aspnetcore.http.extensions.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.http.extensions/2.0.1/microsoft.aspnetcore.http.extensions.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.http.extensions/2.0.1/microsoft.aspnetcore.http.extensions.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.http.features/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.http.features/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.http.features/2.0.1/microsoft.aspnetcore.http.features.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.http.features/2.0.1/microsoft.aspnetcore.http.features.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.http.features/2.0.1/microsoft.aspnetcore.http.features.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.http/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Http.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.http/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Http.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.http/2.0.1/microsoft.aspnetcore.http.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.http/2.0.1/microsoft.aspnetcore.http.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.http/2.0.1/microsoft.aspnetcore.http.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.httpoverrides/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.httpoverrides/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.httpoverrides/2.0.1/microsoft.aspnetcore.httpoverrides.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.httpoverrides/2.0.1/microsoft.aspnetcore.httpoverrides.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.httpoverrides/2.0.1/microsoft.aspnetcore.httpoverrides.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.identity.entityframeworkcore/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.identity.entityframeworkcore/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.identity.entityframeworkcore/2.0.1/microsoft.aspnetcore.identity.entityframeworkcore.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.identity.entityframeworkcore/2.0.1/microsoft.aspnetcore.identity.entityframeworkcore.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.identity.entityframeworkcore/2.0.1/microsoft.aspnetcore.identity.entityframeworkcore.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.identity/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Identity.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.identity/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Identity.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.identity/2.0.1/microsoft.aspnetcore.identity.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.identity/2.0.1/microsoft.aspnetcore.identity.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.identity/2.0.1/microsoft.aspnetcore.identity.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.jsonpatch/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.jsonpatch/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.jsonpatch/2.0.0/microsoft.aspnetcore.jsonpatch.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.jsonpatch/2.0.0/microsoft.aspnetcore.jsonpatch.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.jsonpatch/2.0.0/microsoft.aspnetcore.jsonpatch.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.localization.routing/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Localization.Routing.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.localization.routing/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Localization.Routing.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.localization.routing/2.0.1/microsoft.aspnetcore.localization.routing.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.localization.routing/2.0.1/microsoft.aspnetcore.localization.routing.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.localization.routing/2.0.1/microsoft.aspnetcore.localization.routing.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.localization/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.localization/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Localization.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.localization/2.0.1/microsoft.aspnetcore.localization.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.localization/2.0.1/microsoft.aspnetcore.localization.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.localization/2.0.1/microsoft.aspnetcore.localization.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.middlewareanalysis/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.MiddlewareAnalysis.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.middlewareanalysis/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.MiddlewareAnalysis.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.middlewareanalysis/2.0.1/microsoft.aspnetcore.middlewareanalysis.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.middlewareanalysis/2.0.1/microsoft.aspnetcore.middlewareanalysis.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.middlewareanalysis/2.0.1/microsoft.aspnetcore.middlewareanalysis.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.abstractions/2.0.1/microsoft.aspnetcore.mvc.abstractions.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.abstractions/2.0.1/microsoft.aspnetcore.mvc.abstractions.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.abstractions/2.0.1/microsoft.aspnetcore.mvc.abstractions.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.apiexplorer/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.apiexplorer/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.apiexplorer/2.0.1/microsoft.aspnetcore.mvc.apiexplorer.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.apiexplorer/2.0.1/microsoft.aspnetcore.mvc.apiexplorer.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.apiexplorer/2.0.1/microsoft.aspnetcore.mvc.apiexplorer.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.core/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.core/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.core/2.0.1/microsoft.aspnetcore.mvc.core.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.core/2.0.1/microsoft.aspnetcore.mvc.core.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.core/2.0.1/microsoft.aspnetcore.mvc.core.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.cors/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.cors/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.cors/2.0.1/microsoft.aspnetcore.mvc.cors.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.cors/2.0.1/microsoft.aspnetcore.mvc.cors.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.cors/2.0.1/microsoft.aspnetcore.mvc.cors.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.dataannotations/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.dataannotations/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.dataannotations/2.0.1/microsoft.aspnetcore.mvc.dataannotations.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.dataannotations/2.0.1/microsoft.aspnetcore.mvc.dataannotations.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.dataannotations/2.0.1/microsoft.aspnetcore.mvc.dataannotations.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.formatters.json/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.formatters.json/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.formatters.json/2.0.1/microsoft.aspnetcore.mvc.formatters.json.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.formatters.json/2.0.1/microsoft.aspnetcore.mvc.formatters.json.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.formatters.json/2.0.1/microsoft.aspnetcore.mvc.formatters.json.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.formatters.xml/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.formatters.xml/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Xml.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.formatters.xml/2.0.1/microsoft.aspnetcore.mvc.formatters.xml.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.formatters.xml/2.0.1/microsoft.aspnetcore.mvc.formatters.xml.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.formatters.xml/2.0.1/microsoft.aspnetcore.mvc.formatters.xml.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.localization/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.localization/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.localization/2.0.1/microsoft.aspnetcore.mvc.localization.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.localization/2.0.1/microsoft.aspnetcore.mvc.localization.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.localization/2.0.1/microsoft.aspnetcore.mvc.localization.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razor.extensions/2.0.1/lib/net46/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razor.extensions/2.0.1/lib/net46/Microsoft.AspNetCore.Mvc.Razor.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razor.extensions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razor.extensions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razor.extensions/2.0.1/microsoft.aspnetcore.mvc.razor.extensions.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razor.extensions/2.0.1/microsoft.aspnetcore.mvc.razor.extensions.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razor.extensions/2.0.1/microsoft.aspnetcore.mvc.razor.extensions.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razor.viewcompilation/2.0.1/build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation-x64.exe +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razor.viewcompilation/2.0.1/build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation-x86.exe +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razor.viewcompilation/2.0.1/build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Tasks.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razor.viewcompilation/2.0.1/build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razor.viewcompilation/2.0.1/build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razor.viewcompilation/2.0.1/microsoft.aspnetcore.mvc.razor.viewcompilation.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razor.viewcompilation/2.0.1/microsoft.aspnetcore.mvc.razor.viewcompilation.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razor.viewcompilation/2.0.1/microsoft.aspnetcore.mvc.razor.viewcompilation.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razor/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razor/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razor/2.0.1/microsoft.aspnetcore.mvc.razor.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razor/2.0.1/microsoft.aspnetcore.mvc.razor.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razor/2.0.1/microsoft.aspnetcore.mvc.razor.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razorpages/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razorpages/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razorpages/2.0.1/microsoft.aspnetcore.mvc.razorpages.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razorpages/2.0.1/microsoft.aspnetcore.mvc.razorpages.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.razorpages/2.0.1/microsoft.aspnetcore.mvc.razorpages.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.taghelpers/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.taghelpers/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.taghelpers/2.0.1/microsoft.aspnetcore.mvc.taghelpers.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.taghelpers/2.0.1/microsoft.aspnetcore.mvc.taghelpers.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.taghelpers/2.0.1/microsoft.aspnetcore.mvc.taghelpers.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.viewfeatures/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.viewfeatures/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.viewfeatures/2.0.1/microsoft.aspnetcore.mvc.viewfeatures.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.viewfeatures/2.0.1/microsoft.aspnetcore.mvc.viewfeatures.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc.viewfeatures/2.0.1/microsoft.aspnetcore.mvc.viewfeatures.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc/2.0.1/microsoft.aspnetcore.mvc.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc/2.0.1/microsoft.aspnetcore.mvc.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.mvc/2.0.1/microsoft.aspnetcore.mvc.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.nodeservices/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.NodeServices.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.nodeservices/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.NodeServices.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.nodeservices/2.0.1/microsoft.aspnetcore.nodeservices.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.nodeservices/2.0.1/microsoft.aspnetcore.nodeservices.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.nodeservices/2.0.1/microsoft.aspnetcore.nodeservices.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.owin/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Owin.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.owin/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Owin.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.owin/2.0.1/microsoft.aspnetcore.owin.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.owin/2.0.1/microsoft.aspnetcore.owin.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.owin/2.0.1/microsoft.aspnetcore.owin.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.razor.language/2.0.1/lib/net46/Microsoft.AspNetCore.Razor.Language.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.razor.language/2.0.1/lib/net46/Microsoft.AspNetCore.Razor.Language.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.razor.language/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.razor.language/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.razor.language/2.0.1/microsoft.aspnetcore.razor.language.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.razor.language/2.0.1/microsoft.aspnetcore.razor.language.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.razor.language/2.0.1/microsoft.aspnetcore.razor.language.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.razor.runtime/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.razor.runtime/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.razor.runtime/2.0.1/microsoft.aspnetcore.razor.runtime.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.razor.runtime/2.0.1/microsoft.aspnetcore.razor.runtime.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.razor.runtime/2.0.1/microsoft.aspnetcore.razor.runtime.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.razor/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.razor/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Razor.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.razor/2.0.1/microsoft.aspnetcore.razor.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.razor/2.0.1/microsoft.aspnetcore.razor.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.razor/2.0.1/microsoft.aspnetcore.razor.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.responsecaching.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.responsecaching.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.responsecaching.abstractions/2.0.1/microsoft.aspnetcore.responsecaching.abstractions.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.responsecaching.abstractions/2.0.1/microsoft.aspnetcore.responsecaching.abstractions.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.responsecaching.abstractions/2.0.1/microsoft.aspnetcore.responsecaching.abstractions.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.responsecaching/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.responsecaching/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.responsecaching/2.0.1/microsoft.aspnetcore.responsecaching.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.responsecaching/2.0.1/microsoft.aspnetcore.responsecaching.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.responsecaching/2.0.1/microsoft.aspnetcore.responsecaching.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.responsecompression/2.0.1/lib/net461/Microsoft.AspNetCore.ResponseCompression.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.responsecompression/2.0.1/lib/net461/Microsoft.AspNetCore.ResponseCompression.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.responsecompression/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.ResponseCompression.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.responsecompression/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.ResponseCompression.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.responsecompression/2.0.1/microsoft.aspnetcore.responsecompression.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.responsecompression/2.0.1/microsoft.aspnetcore.responsecompression.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.responsecompression/2.0.1/microsoft.aspnetcore.responsecompression.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.rewrite/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Rewrite.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.rewrite/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Rewrite.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.rewrite/2.0.1/microsoft.aspnetcore.rewrite.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.rewrite/2.0.1/microsoft.aspnetcore.rewrite.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.rewrite/2.0.1/microsoft.aspnetcore.rewrite.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.routing.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.routing.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.routing.abstractions/2.0.1/microsoft.aspnetcore.routing.abstractions.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.routing.abstractions/2.0.1/microsoft.aspnetcore.routing.abstractions.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.routing.abstractions/2.0.1/microsoft.aspnetcore.routing.abstractions.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.routing/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.routing/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Routing.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.routing/2.0.1/microsoft.aspnetcore.routing.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.routing/2.0.1/microsoft.aspnetcore.routing.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.routing/2.0.1/microsoft.aspnetcore.routing.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.httpsys/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Server.HttpSys.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.httpsys/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Server.HttpSys.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.httpsys/2.0.1/microsoft.aspnetcore.server.httpsys.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.httpsys/2.0.1/microsoft.aspnetcore.server.httpsys.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.httpsys/2.0.1/microsoft.aspnetcore.server.httpsys.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.iisintegration/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.iisintegration/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.iisintegration/2.0.1/microsoft.aspnetcore.server.iisintegration.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.iisintegration/2.0.1/microsoft.aspnetcore.server.iisintegration.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.iisintegration/2.0.1/microsoft.aspnetcore.server.iisintegration.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.kestrel.core/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Core.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.kestrel.core/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Core.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.kestrel.core/2.0.1/microsoft.aspnetcore.server.kestrel.core.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.kestrel.core/2.0.1/microsoft.aspnetcore.server.kestrel.core.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.kestrel.core/2.0.1/microsoft.aspnetcore.server.kestrel.core.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.kestrel.https/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Https.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.kestrel.https/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Https.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.kestrel.https/2.0.1/microsoft.aspnetcore.server.kestrel.https.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.kestrel.https/2.0.1/microsoft.aspnetcore.server.kestrel.https.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.kestrel.https/2.0.1/microsoft.aspnetcore.server.kestrel.https.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.kestrel.transport.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.kestrel.transport.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.kestrel.transport.abstractions/2.0.1/microsoft.aspnetcore.server.kestrel.transport.abstractions.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.kestrel.transport.abstractions/2.0.1/microsoft.aspnetcore.server.kestrel.transport.abstractions.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.kestrel.transport.abstractions/2.0.1/microsoft.aspnetcore.server.kestrel.transport.abstractions.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.kestrel.transport.libuv/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.kestrel.transport.libuv/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.kestrel.transport.libuv/2.0.1/microsoft.aspnetcore.server.kestrel.transport.libuv.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.kestrel.transport.libuv/2.0.1/microsoft.aspnetcore.server.kestrel.transport.libuv.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.kestrel.transport.libuv/2.0.1/microsoft.aspnetcore.server.kestrel.transport.libuv.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.kestrel/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.kestrel/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.kestrel/2.0.1/microsoft.aspnetcore.server.kestrel.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.kestrel/2.0.1/microsoft.aspnetcore.server.kestrel.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.server.kestrel/2.0.1/microsoft.aspnetcore.server.kestrel.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.session/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Session.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.session/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Session.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.session/2.0.1/microsoft.aspnetcore.session.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.session/2.0.1/microsoft.aspnetcore.session.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.session/2.0.1/microsoft.aspnetcore.session.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.spaservices/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.spaservices/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.spaservices/2.0.1/microsoft.aspnetcore.spaservices.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.spaservices/2.0.1/microsoft.aspnetcore.spaservices.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.spaservices/2.0.1/microsoft.aspnetcore.spaservices.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.staticfiles/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.StaticFiles.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.staticfiles/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.StaticFiles.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.staticfiles/2.0.1/microsoft.aspnetcore.staticfiles.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.staticfiles/2.0.1/microsoft.aspnetcore.staticfiles.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.staticfiles/2.0.1/microsoft.aspnetcore.staticfiles.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.websockets/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.websockets/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.websockets/2.0.1/microsoft.aspnetcore.websockets.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.websockets/2.0.1/microsoft.aspnetcore.websockets.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.websockets/2.0.1/microsoft.aspnetcore.websockets.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.webutilities/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.webutilities/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.webutilities/2.0.1/microsoft.aspnetcore.webutilities.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.webutilities/2.0.1/microsoft.aspnetcore.webutilities.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore.webutilities/2.0.1/microsoft.aspnetcore.webutilities.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore/2.0.1/microsoft.aspnetcore.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore/2.0.1/microsoft.aspnetcore.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.aspnetcore/2.0.1/microsoft.aspnetcore.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.azure.keyvault.webkey/2.0.7/lib/net452/Microsoft.Azure.KeyVault.WebKey.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.azure.keyvault.webkey/2.0.7/lib/net452/Microsoft.Azure.KeyVault.WebKey.runtimeconfig.json +dotnet/sdk/NuGetFallbackFolder/microsoft.azure.keyvault.webkey/2.0.7/lib/net452/Microsoft.Azure.KeyVault.WebKey.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.azure.keyvault.webkey/2.0.7/lib/netstandard1.4/Microsoft.Azure.KeyVault.WebKey.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.azure.keyvault.webkey/2.0.7/lib/netstandard1.4/Microsoft.Azure.KeyVault.WebKey.runtimeconfig.json +dotnet/sdk/NuGetFallbackFolder/microsoft.azure.keyvault.webkey/2.0.7/lib/netstandard1.4/Microsoft.Azure.KeyVault.WebKey.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.azure.keyvault.webkey/2.0.7/microsoft.azure.keyvault.webkey.2.0.7.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.azure.keyvault.webkey/2.0.7/microsoft.azure.keyvault.webkey.2.0.7.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.azure.keyvault.webkey/2.0.7/microsoft.azure.keyvault.webkey.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.azure.keyvault/2.3.2/lib/net452/Microsoft.Azure.KeyVault.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.azure.keyvault/2.3.2/lib/net452/Microsoft.Azure.KeyVault.runtimeconfig.json +dotnet/sdk/NuGetFallbackFolder/microsoft.azure.keyvault/2.3.2/lib/net452/Microsoft.Azure.KeyVault.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.azure.keyvault/2.3.2/lib/netstandard1.4/Microsoft.Azure.KeyVault.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.azure.keyvault/2.3.2/lib/netstandard1.4/Microsoft.Azure.KeyVault.runtimeconfig.json +dotnet/sdk/NuGetFallbackFolder/microsoft.azure.keyvault/2.3.2/lib/netstandard1.4/Microsoft.Azure.KeyVault.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.azure.keyvault/2.3.2/microsoft.azure.keyvault.2.3.2.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.azure.keyvault/2.3.2/microsoft.azure.keyvault.2.3.2.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.azure.keyvault/2.3.2/microsoft.azure.keyvault.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.build.framework/15.3.409/lib/net46/Microsoft.Build.Framework.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.build.framework/15.3.409/lib/net46/Microsoft.Build.Framework.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.build.framework/15.3.409/lib/netstandard1.3/Microsoft.Build.Framework.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.build.framework/15.3.409/lib/netstandard1.3/Microsoft.Build.Framework.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.build.framework/15.3.409/microsoft.build.framework.15.3.409.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.build.framework/15.3.409/microsoft.build.framework.15.3.409.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.build.framework/15.3.409/microsoft.build.framework.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/15.0/Microsoft.Common.props +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/MSBuild.exe +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/MSBuild.exe.config +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/Microsoft.CSharp.CrossTargeting.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/Microsoft.CSharp.CurrentVersion.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/Microsoft.CSharp.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/Microsoft.Common.CrossTargeting.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/Microsoft.Common.CurrentVersion.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/Microsoft.Common.overridetasks +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/Microsoft.Common.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/Microsoft.Common.tasks +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/Microsoft.Data.Entity.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/Microsoft.NETFramework.CurrentVersion.props +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/Microsoft.NETFramework.CurrentVersion.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/Microsoft.NETFramework.props +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/Microsoft.NETFramework.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/Microsoft.ServiceModel.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/Microsoft.VisualBasic.CrossTargeting.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/Microsoft.VisualBasic.CurrentVersion.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/Microsoft.VisualBasic.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/Microsoft.VisualStudioVersion.v11.Common.props +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/Microsoft.VisualStudioVersion.v12.Common.props +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/Microsoft.VisualStudioVersion.v14.Common.props +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/Microsoft.WinFx.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/Microsoft.WorkflowBuildExtensions.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/Microsoft.Xaml.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/Workflow.VisualBasic.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/net46/Workflow.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/netcoreapp1.0/15.0/Microsoft.Common.props +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/netcoreapp1.0/MSBuild.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/netcoreapp1.0/MSBuild.runtimeconfig.json +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/netcoreapp1.0/Microsoft.CSharp.CrossTargeting.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/netcoreapp1.0/Microsoft.CSharp.CurrentVersion.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/netcoreapp1.0/Microsoft.CSharp.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/netcoreapp1.0/Microsoft.Common.CrossTargeting.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/netcoreapp1.0/Microsoft.Common.CurrentVersion.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/netcoreapp1.0/Microsoft.Common.overridetasks +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/netcoreapp1.0/Microsoft.Common.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/netcoreapp1.0/Microsoft.Common.tasks +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/netcoreapp1.0/Microsoft.NETFramework.CurrentVersion.props +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/netcoreapp1.0/Microsoft.NETFramework.CurrentVersion.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/netcoreapp1.0/Microsoft.NETFramework.props +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/netcoreapp1.0/Microsoft.NETFramework.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/netcoreapp1.0/Microsoft.VisualBasic.CrossTargeting.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/netcoreapp1.0/Microsoft.VisualBasic.CurrentVersion.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/netcoreapp1.0/Microsoft.VisualBasic.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/netcoreapp1.0/Microsoft.VisualStudioVersion.v11.Common.props +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/netcoreapp1.0/Microsoft.VisualStudioVersion.v12.Common.props +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/contentFiles/any/netcoreapp1.0/Microsoft.VisualStudioVersion.v14.Common.props +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/microsoft.build.runtime.15.3.409.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/microsoft.build.runtime.15.3.409.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.build.runtime/15.3.409/microsoft.build.runtime.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.build.tasks.core/15.3.409/lib/net46/Microsoft.Build.Tasks.Core.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.build.tasks.core/15.3.409/lib/netstandard1.3/Microsoft.Build.Tasks.Core.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.build.tasks.core/15.3.409/microsoft.build.tasks.core.15.3.409.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.build.tasks.core/15.3.409/microsoft.build.tasks.core.15.3.409.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.build.tasks.core/15.3.409/microsoft.build.tasks.core.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.build.utilities.core/15.3.409/lib/net46/Microsoft.Build.Utilities.Core.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.build.utilities.core/15.3.409/lib/net46/Microsoft.Build.Utilities.Core.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.build.utilities.core/15.3.409/lib/netstandard1.3/Microsoft.Build.Utilities.Core.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.build.utilities.core/15.3.409/lib/netstandard1.3/Microsoft.Build.Utilities.Core.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.build.utilities.core/15.3.409/microsoft.build.utilities.core.15.3.409.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.build.utilities.core/15.3.409/microsoft.build.utilities.core.15.3.409.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.build.utilities.core/15.3.409/microsoft.build.utilities.core.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.build/15.3.409/lib/net46/Microsoft.Build.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.build/15.3.409/lib/net46/Microsoft.Build.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.build/15.3.409/lib/netstandard1.5/Microsoft.Build.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.build/15.3.409/lib/netstandard1.5/Microsoft.Build.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.build/15.3.409/microsoft.build.15.3.409.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.build/15.3.409/microsoft.build.15.3.409.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.build/15.3.409/microsoft.build.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.analyzers/1.1.0/ThirdPartyNotices.rtf +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.analyzers/1.1.0/analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.analyzers/1.1.0/analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.analyzers/1.1.0/analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.analyzers/1.1.0/analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.analyzers/1.1.0/microsoft.codeanalysis.analyzers.1.1.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.analyzers/1.1.0/microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.analyzers/1.1.0/microsoft.codeanalysis.analyzers.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.analyzers/1.1.0/tools/install.ps1 +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.analyzers/1.1.0/tools/uninstall.ps1 +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.common/2.3.1/lib/netstandard1.3/Microsoft.CodeAnalysis.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.common/2.3.1/lib/netstandard1.3/Microsoft.CodeAnalysis.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.common/2.3.1/microsoft.codeanalysis.common.2.3.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.common/2.3.1/microsoft.codeanalysis.common.2.3.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.common/2.3.1/microsoft.codeanalysis.common.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.csharp.workspaces/2.3.1/lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.csharp.workspaces/2.3.1/lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.csharp.workspaces/2.3.1/microsoft.codeanalysis.csharp.workspaces.2.3.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.csharp.workspaces/2.3.1/microsoft.codeanalysis.csharp.workspaces.2.3.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.csharp.workspaces/2.3.1/microsoft.codeanalysis.csharp.workspaces.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.csharp/2.3.1/lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.csharp/2.3.1/lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.csharp/2.3.1/microsoft.codeanalysis.csharp.2.3.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.csharp/2.3.1/microsoft.codeanalysis.csharp.2.3.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.csharp/2.3.1/microsoft.codeanalysis.csharp.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.razor/2.0.1/lib/net46/Microsoft.CodeAnalysis.Razor.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.razor/2.0.1/lib/net46/Microsoft.CodeAnalysis.Razor.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.razor/2.0.1/lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.razor/2.0.1/lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.razor/2.0.1/microsoft.codeanalysis.razor.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.razor/2.0.1/microsoft.codeanalysis.razor.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.razor/2.0.1/microsoft.codeanalysis.razor.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.workspaces.common/2.3.1/lib/net46/Microsoft.CodeAnalysis.Workspaces.Desktop.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.workspaces.common/2.3.1/lib/net46/Microsoft.CodeAnalysis.Workspaces.Desktop.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.workspaces.common/2.3.1/lib/net46/Microsoft.CodeAnalysis.Workspaces.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.workspaces.common/2.3.1/lib/net46/Microsoft.CodeAnalysis.Workspaces.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.workspaces.common/2.3.1/lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.workspaces.common/2.3.1/lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.workspaces.common/2.3.1/microsoft.codeanalysis.workspaces.common.2.3.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.workspaces.common/2.3.1/microsoft.codeanalysis.workspaces.common.2.3.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.codeanalysis.workspaces.common/2.3.1/microsoft.codeanalysis.workspaces.common.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/lib/netcore50/Microsoft.CSharp.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/lib/netstandard1.3/Microsoft.CSharp.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/microsoft.csharp.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/microsoft.csharp.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/microsoft.csharp.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/netcore50/Microsoft.CSharp.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/netcore50/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/netcore50/de/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/netcore50/es/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/netcore50/fr/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/netcore50/it/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/netcore50/ja/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/netcore50/ko/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/netcore50/ru/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/netcore50/zh-hans/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/netcore50/zh-hant/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/netstandard1.0/Microsoft.CSharp.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/netstandard1.0/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/netstandard1.0/de/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/netstandard1.0/es/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/netstandard1.0/fr/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/netstandard1.0/it/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/netstandard1.0/ja/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/netstandard1.0/ko/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/netstandard1.0/ru/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.0.1/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/lib/netcore50/Microsoft.CSharp.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/lib/netstandard1.3/Microsoft.CSharp.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/microsoft.csharp.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/microsoft.csharp.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/microsoft.csharp.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/netcore50/Microsoft.CSharp.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/netcore50/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/netcore50/de/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/netcore50/es/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/netcore50/fr/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/netcore50/it/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/netcore50/ja/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/netcore50/ko/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/netcore50/ru/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/netcore50/zh-hans/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/netcore50/zh-hant/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/netstandard1.0/Microsoft.CSharp.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/netstandard1.0/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/netstandard1.0/de/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/netstandard1.0/es/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/netstandard1.0/fr/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/netstandard1.0/it/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/netstandard1.0/ja/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/netstandard1.0/ko/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/netstandard1.0/ru/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/lib/netcore50/Microsoft.CSharp.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/lib/netcoreapp2.0/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/lib/netstandard1.3/Microsoft.CSharp.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/lib/netstandard2.0/Microsoft.CSharp.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/microsoft.csharp.4.4.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/microsoft.csharp.4.4.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/microsoft.csharp.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/netcore50/Microsoft.CSharp.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/netcore50/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/netcore50/de/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/netcore50/es/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/netcore50/fr/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/netcore50/it/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/netcore50/ja/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/netcore50/ko/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/netcore50/ru/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/netcore50/zh-hans/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/netcore50/zh-hant/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/netcoreapp2.0/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/netstandard1.0/Microsoft.CSharp.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/netstandard1.0/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/netstandard1.0/de/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/netstandard1.0/es/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/netstandard1.0/fr/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/netstandard1.0/it/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/netstandard1.0/ja/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/netstandard1.0/ko/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/netstandard1.0/ru/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/netstandard2.0/Microsoft.CSharp.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/netstandard2.0/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/useSharedDesignerContext.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.csharp/4.4.0/version.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/net40/Microsoft.Data.Edm.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/net40/Microsoft.Data.Edm.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/net40/de/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/net40/es/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/net40/fr/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/net40/it/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/net40/ja/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/net40/ko/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/net40/ru/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/net40/zh-Hans/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/net40/zh-Hant/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/netstandard1.1/Microsoft.Data.Edm.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/netstandard1.1/Microsoft.Data.Edm.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/netstandard1.1/de/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/netstandard1.1/es/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/netstandard1.1/fr/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/netstandard1.1/it/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/netstandard1.1/ja/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/netstandard1.1/ko/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/netstandard1.1/ru/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/netstandard1.1/zh-Hans/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/netstandard1.1/zh-Hant/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/Microsoft.Data.Edm.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/Microsoft.Data.Edm.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/de/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/es/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/fr/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/it/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/ja/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/ko/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/ru/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/zh-Hans/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/zh-Hant/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/sl4/Microsoft.Data.Edm.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/sl4/Microsoft.Data.Edm.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/sl4/de/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/sl4/es/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/sl4/fr/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/sl4/it/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/sl4/ja/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/sl4/ko/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/sl4/ru/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/sl4/zh-Hans/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/lib/sl4/zh-Hant/Microsoft.Data.Edm.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/microsoft.data.edm.5.8.2.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/microsoft.data.edm.5.8.2.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.data.edm/5.8.2/microsoft.data.edm.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/net40/Microsoft.Data.OData.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/net40/Microsoft.Data.OData.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/net40/de/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/net40/es/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/net40/fr/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/net40/it/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/net40/ja/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/net40/ko/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/net40/ru/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/net40/zh-Hans/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/net40/zh-Hant/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/netstandard1.1/Microsoft.Data.OData.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/netstandard1.1/Microsoft.Data.OData.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/netstandard1.1/de/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/netstandard1.1/es/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/netstandard1.1/fr/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/netstandard1.1/it/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/netstandard1.1/ja/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/netstandard1.1/ko/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/netstandard1.1/ru/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/netstandard1.1/zh-Hans/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/netstandard1.1/zh-Hant/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/Microsoft.Data.OData.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/Microsoft.Data.OData.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/de/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/es/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/fr/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/it/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/ja/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/ko/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/ru/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/zh-Hans/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/zh-Hant/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/portable-net45+wp8+win8+wpa/Microsoft.Data.OData.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/portable-net45+wp8+win8+wpa/Microsoft.Data.OData.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/sl4/Microsoft.Data.OData.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/sl4/Microsoft.Data.OData.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/sl4/de/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/sl4/es/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/sl4/fr/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/sl4/it/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/sl4/ja/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/sl4/ko/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/sl4/ru/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/sl4/zh-Hans/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/lib/sl4/zh-Hant/Microsoft.Data.OData.resources.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/microsoft.data.odata.5.8.2.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/microsoft.data.odata.5.8.2.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.data.odata/5.8.2/microsoft.data.odata.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.data.sqlite.core/2.0.0/lib/netstandard2.0/Microsoft.Data.Sqlite.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.data.sqlite.core/2.0.0/lib/netstandard2.0/Microsoft.Data.Sqlite.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.data.sqlite.core/2.0.0/microsoft.data.sqlite.core.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.data.sqlite.core/2.0.0/microsoft.data.sqlite.core.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.data.sqlite.core/2.0.0/microsoft.data.sqlite.core.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.data.sqlite/2.0.0/microsoft.data.sqlite.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.data.sqlite/2.0.0/microsoft.data.sqlite.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.data.sqlite/2.0.0/microsoft.data.sqlite.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.dotnet.platformabstractions/2.0.3/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.dotnet.platformabstractions/2.0.3/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.dotnet.platformabstractions/2.0.3/lib/net45/Microsoft.DotNet.PlatformAbstractions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.dotnet.platformabstractions/2.0.3/lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.dotnet.platformabstractions/2.0.3/microsoft.dotnet.platformabstractions.2.0.3.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.dotnet.platformabstractions/2.0.3/microsoft.dotnet.platformabstractions.2.0.3.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.dotnet.platformabstractions/2.0.3/microsoft.dotnet.platformabstractions.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.dotnet.watcher.tools/2.0.0/lib/netcoreapp2.0/dotnet-watch.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.dotnet.watcher.tools/2.0.0/lib/netcoreapp2.0/dotnet-watch.runtimeconfig.json +dotnet/sdk/NuGetFallbackFolder/microsoft.dotnet.watcher.tools/2.0.0/microsoft.dotnet.watcher.tools.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.dotnet.watcher.tools/2.0.0/microsoft.dotnet.watcher.tools.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.dotnet.watcher.tools/2.0.0/microsoft.dotnet.watcher.tools.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.dotnet.watcher.tools/2.0.0/prefercliruntime +dotnet/sdk/NuGetFallbackFolder/microsoft.dotnet.watcher.tools/2.0.0/toolassets/DotNetWatchCommon.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.dotnet.watcher.tools/2.0.0/toolassets/DotNetWatchInner.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.dotnet.watcher.tools/2.0.0/toolassets/DotNetWatchOuter.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.design/2.0.1/lib/net461/Microsoft.EntityFrameworkCore.Design.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.design/2.0.1/lib/net461/Microsoft.EntityFrameworkCore.Design.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.design/2.0.1/lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.design/2.0.1/lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.design/2.0.1/microsoft.entityframeworkcore.design.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.design/2.0.1/microsoft.entityframeworkcore.design.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.design/2.0.1/microsoft.entityframeworkcore.design.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.inmemory/2.0.1/lib/netstandard2.0/Microsoft.EntityFrameworkCore.InMemory.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.inmemory/2.0.1/lib/netstandard2.0/Microsoft.EntityFrameworkCore.InMemory.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.inmemory/2.0.1/microsoft.entityframeworkcore.inmemory.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.inmemory/2.0.1/microsoft.entityframeworkcore.inmemory.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.inmemory/2.0.1/microsoft.entityframeworkcore.inmemory.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.relational/2.0.1/lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.relational/2.0.1/lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.relational/2.0.1/microsoft.entityframeworkcore.relational.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.relational/2.0.1/microsoft.entityframeworkcore.relational.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.relational/2.0.1/microsoft.entityframeworkcore.relational.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.sqlite.core/2.0.1/lib/netstandard2.0/Microsoft.EntityFrameworkCore.Sqlite.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.sqlite.core/2.0.1/lib/netstandard2.0/Microsoft.EntityFrameworkCore.Sqlite.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.sqlite.core/2.0.1/microsoft.entityframeworkcore.sqlite.core.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.sqlite.core/2.0.1/microsoft.entityframeworkcore.sqlite.core.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.sqlite.core/2.0.1/microsoft.entityframeworkcore.sqlite.core.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.sqlite/2.0.1/microsoft.entityframeworkcore.sqlite.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.sqlite/2.0.1/microsoft.entityframeworkcore.sqlite.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.sqlite/2.0.1/microsoft.entityframeworkcore.sqlite.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.sqlserver/2.0.1/lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.sqlserver/2.0.1/lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.sqlserver/2.0.1/microsoft.entityframeworkcore.sqlserver.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.sqlserver/2.0.1/microsoft.entityframeworkcore.sqlserver.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.sqlserver/2.0.1/microsoft.entityframeworkcore.sqlserver.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools.dotnet/2.0.1/lib/netcoreapp2.0/dotnet-ef.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools.dotnet/2.0.1/lib/netcoreapp2.0/dotnet-ef.runtimeconfig.json +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools.dotnet/2.0.1/microsoft.entityframeworkcore.tools.dotnet.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools.dotnet/2.0.1/microsoft.entityframeworkcore.tools.dotnet.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools.dotnet/2.0.1/microsoft.entityframeworkcore.tools.dotnet.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools.dotnet/2.0.1/prefercliruntime +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools.dotnet/2.0.1/tools/net461/ef.exe +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools.dotnet/2.0.1/tools/net461/ef.x86.exe +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools.dotnet/2.0.1/tools/netcoreapp2.0/ef.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools.dotnet/2.0.1/tools/netcoreapp2.0/ef.runtimeconfig.json +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools/2.0.1/lib/netstandard2.0/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools/2.0.1/microsoft.entityframeworkcore.tools.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools/2.0.1/microsoft.entityframeworkcore.tools.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools/2.0.1/microsoft.entityframeworkcore.tools.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools/2.0.1/tools/EntityFrameworkCore.PowerShell2.psd1 +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools/2.0.1/tools/EntityFrameworkCore.PowerShell2.psm1 +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools/2.0.1/tools/EntityFrameworkCore.psd1 +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools/2.0.1/tools/EntityFrameworkCore.psm1 +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools/2.0.1/tools/about_EntityFrameworkCore.help.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools/2.0.1/tools/init.ps1 +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools/2.0.1/tools/install.ps1 +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools/2.0.1/tools/net461/ef.exe +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools/2.0.1/tools/net461/ef.exe.config +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools/2.0.1/tools/net461/ef.x86.exe +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools/2.0.1/tools/net461/ef.x86.exe.config +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools/2.0.1/tools/netcoreapp2.0/ef.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore.tools/2.0.1/tools/netcoreapp2.0/ef.runtimeconfig.json +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore/2.0.1/lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore/2.0.1/lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore/2.0.1/microsoft.entityframeworkcore.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore/2.0.1/microsoft.entityframeworkcore.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.entityframeworkcore/2.0.1/microsoft.entityframeworkcore.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.caching.abstractions/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.caching.abstractions/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.caching.abstractions/2.0.0/microsoft.extensions.caching.abstractions.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.caching.abstractions/2.0.0/microsoft.extensions.caching.abstractions.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.caching.abstractions/2.0.0/microsoft.extensions.caching.abstractions.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.caching.memory/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.caching.memory/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.caching.memory/2.0.0/microsoft.extensions.caching.memory.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.caching.memory/2.0.0/microsoft.extensions.caching.memory.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.caching.memory/2.0.0/microsoft.extensions.caching.memory.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.caching.redis/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Caching.Redis.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.caching.redis/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Caching.Redis.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.caching.redis/2.0.0/microsoft.extensions.caching.redis.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.caching.redis/2.0.0/microsoft.extensions.caching.redis.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.caching.redis/2.0.0/microsoft.extensions.caching.redis.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.caching.sqlconfig.tools/2.0.0/lib/netcoreapp2.0/dotnet-sql-cache.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.caching.sqlconfig.tools/2.0.0/lib/netcoreapp2.0/dotnet-sql-cache.runtimeconfig.json +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.caching.sqlconfig.tools/2.0.0/microsoft.extensions.caching.sqlconfig.tools.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.caching.sqlconfig.tools/2.0.0/microsoft.extensions.caching.sqlconfig.tools.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.caching.sqlconfig.tools/2.0.0/microsoft.extensions.caching.sqlconfig.tools.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.caching.sqlconfig.tools/2.0.0/prefercliruntime +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.caching.sqlserver/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.caching.sqlserver/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.caching.sqlserver/2.0.0/microsoft.extensions.caching.sqlserver.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.caching.sqlserver/2.0.0/microsoft.extensions.caching.sqlserver.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.caching.sqlserver/2.0.0/microsoft.extensions.caching.sqlserver.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.abstractions/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.abstractions/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.abstractions/2.0.0/microsoft.extensions.configuration.abstractions.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.abstractions/2.0.0/microsoft.extensions.configuration.abstractions.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.abstractions/2.0.0/microsoft.extensions.configuration.abstractions.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.azurekeyvault/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.AzureKeyVault.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.azurekeyvault/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.AzureKeyVault.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.azurekeyvault/2.0.0/microsoft.extensions.configuration.azurekeyvault.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.azurekeyvault/2.0.0/microsoft.extensions.configuration.azurekeyvault.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.azurekeyvault/2.0.0/microsoft.extensions.configuration.azurekeyvault.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.binder/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.binder/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.binder/2.0.0/microsoft.extensions.configuration.binder.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.binder/2.0.0/microsoft.extensions.configuration.binder.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.binder/2.0.0/microsoft.extensions.configuration.binder.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.commandline/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.commandline/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.commandline/2.0.0/microsoft.extensions.configuration.commandline.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.commandline/2.0.0/microsoft.extensions.configuration.commandline.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.commandline/2.0.0/microsoft.extensions.configuration.commandline.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.environmentvariables/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.environmentvariables/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.environmentvariables/2.0.0/microsoft.extensions.configuration.environmentvariables.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.environmentvariables/2.0.0/microsoft.extensions.configuration.environmentvariables.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.environmentvariables/2.0.0/microsoft.extensions.configuration.environmentvariables.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.fileextensions/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.fileextensions/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.fileextensions/2.0.0/microsoft.extensions.configuration.fileextensions.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.fileextensions/2.0.0/microsoft.extensions.configuration.fileextensions.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.fileextensions/2.0.0/microsoft.extensions.configuration.fileextensions.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.ini/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Ini.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.ini/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Ini.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.ini/2.0.0/microsoft.extensions.configuration.ini.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.ini/2.0.0/microsoft.extensions.configuration.ini.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.ini/2.0.0/microsoft.extensions.configuration.ini.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.json/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.json/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.json/2.0.0/microsoft.extensions.configuration.json.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.json/2.0.0/microsoft.extensions.configuration.json.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.json/2.0.0/microsoft.extensions.configuration.json.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.usersecrets/2.0.0/build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.usersecrets/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.usersecrets/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.usersecrets/2.0.0/microsoft.extensions.configuration.usersecrets.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.usersecrets/2.0.0/microsoft.extensions.configuration.usersecrets.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.usersecrets/2.0.0/microsoft.extensions.configuration.usersecrets.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.xml/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Xml.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.xml/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Xml.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.xml/2.0.0/microsoft.extensions.configuration.xml.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.xml/2.0.0/microsoft.extensions.configuration.xml.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration.xml/2.0.0/microsoft.extensions.configuration.xml.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration/2.0.0/microsoft.extensions.configuration.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration/2.0.0/microsoft.extensions.configuration.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.configuration/2.0.0/microsoft.extensions.configuration.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.dependencyinjection.abstractions/2.0.0/lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.dependencyinjection.abstractions/2.0.0/lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.dependencyinjection.abstractions/2.0.0/microsoft.extensions.dependencyinjection.abstractions.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.dependencyinjection.abstractions/2.0.0/microsoft.extensions.dependencyinjection.abstractions.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.dependencyinjection.abstractions/2.0.0/microsoft.extensions.dependencyinjection.abstractions.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.dependencyinjection/2.0.0/lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.dependencyinjection/2.0.0/lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.dependencyinjection/2.0.0/microsoft.extensions.dependencyinjection.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.dependencyinjection/2.0.0/microsoft.extensions.dependencyinjection.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.dependencyinjection/2.0.0/microsoft.extensions.dependencyinjection.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.dependencymodel/2.0.3/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.dependencymodel/2.0.3/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.dependencymodel/2.0.3/lib/net451/Microsoft.Extensions.DependencyModel.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.dependencymodel/2.0.3/lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.dependencymodel/2.0.3/lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.dependencymodel/2.0.3/microsoft.extensions.dependencymodel.2.0.3.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.dependencymodel/2.0.3/microsoft.extensions.dependencymodel.2.0.3.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.dependencymodel/2.0.3/microsoft.extensions.dependencymodel.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.diagnosticadapter/2.0.0/lib/net461/Microsoft.Extensions.DiagnosticAdapter.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.diagnosticadapter/2.0.0/lib/net461/Microsoft.Extensions.DiagnosticAdapter.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.diagnosticadapter/2.0.0/lib/netcoreapp2.0/Microsoft.Extensions.DiagnosticAdapter.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.diagnosticadapter/2.0.0/lib/netcoreapp2.0/Microsoft.Extensions.DiagnosticAdapter.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.diagnosticadapter/2.0.0/microsoft.extensions.diagnosticadapter.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.diagnosticadapter/2.0.0/microsoft.extensions.diagnosticadapter.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.diagnosticadapter/2.0.0/microsoft.extensions.diagnosticadapter.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.fileproviders.abstractions/2.0.0/lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.fileproviders.abstractions/2.0.0/lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.fileproviders.abstractions/2.0.0/microsoft.extensions.fileproviders.abstractions.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.fileproviders.abstractions/2.0.0/microsoft.extensions.fileproviders.abstractions.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.fileproviders.abstractions/2.0.0/microsoft.extensions.fileproviders.abstractions.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.fileproviders.composite/2.0.0/lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.fileproviders.composite/2.0.0/lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.fileproviders.composite/2.0.0/microsoft.extensions.fileproviders.composite.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.fileproviders.composite/2.0.0/microsoft.extensions.fileproviders.composite.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.fileproviders.composite/2.0.0/microsoft.extensions.fileproviders.composite.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.fileproviders.embedded/2.0.0/lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.fileproviders.embedded/2.0.0/lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.fileproviders.embedded/2.0.0/microsoft.extensions.fileproviders.embedded.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.fileproviders.embedded/2.0.0/microsoft.extensions.fileproviders.embedded.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.fileproviders.embedded/2.0.0/microsoft.extensions.fileproviders.embedded.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.fileproviders.physical/2.0.0/lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.fileproviders.physical/2.0.0/lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.fileproviders.physical/2.0.0/microsoft.extensions.fileproviders.physical.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.fileproviders.physical/2.0.0/microsoft.extensions.fileproviders.physical.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.fileproviders.physical/2.0.0/microsoft.extensions.fileproviders.physical.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.filesystemglobbing/2.0.0/lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.filesystemglobbing/2.0.0/lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.filesystemglobbing/2.0.0/microsoft.extensions.filesystemglobbing.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.filesystemglobbing/2.0.0/microsoft.extensions.filesystemglobbing.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.filesystemglobbing/2.0.0/microsoft.extensions.filesystemglobbing.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.hosting.abstractions/2.0.1/lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.hosting.abstractions/2.0.1/lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.hosting.abstractions/2.0.1/microsoft.extensions.hosting.abstractions.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.hosting.abstractions/2.0.1/microsoft.extensions.hosting.abstractions.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.hosting.abstractions/2.0.1/microsoft.extensions.hosting.abstractions.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.identity.core/2.0.1/lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.identity.core/2.0.1/lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.identity.core/2.0.1/microsoft.extensions.identity.core.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.identity.core/2.0.1/microsoft.extensions.identity.core.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.identity.core/2.0.1/microsoft.extensions.identity.core.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.identity.stores/2.0.1/lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.identity.stores/2.0.1/lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.identity.stores/2.0.1/microsoft.extensions.identity.stores.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.identity.stores/2.0.1/microsoft.extensions.identity.stores.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.identity.stores/2.0.1/microsoft.extensions.identity.stores.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.localization.abstractions/2.0.1/lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.localization.abstractions/2.0.1/lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.localization.abstractions/2.0.1/microsoft.extensions.localization.abstractions.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.localization.abstractions/2.0.1/microsoft.extensions.localization.abstractions.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.localization.abstractions/2.0.1/microsoft.extensions.localization.abstractions.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.localization/2.0.1/lib/netstandard2.0/Microsoft.Extensions.Localization.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.localization/2.0.1/lib/netstandard2.0/Microsoft.Extensions.Localization.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.localization/2.0.1/microsoft.extensions.localization.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.localization/2.0.1/microsoft.extensions.localization.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.localization/2.0.1/microsoft.extensions.localization.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.abstractions/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.abstractions/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.abstractions/2.0.0/microsoft.extensions.logging.abstractions.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.abstractions/2.0.0/microsoft.extensions.logging.abstractions.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.abstractions/2.0.0/microsoft.extensions.logging.abstractions.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.azureappservices/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.AzureAppServices.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.azureappservices/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.AzureAppServices.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.azureappservices/2.0.0/microsoft.extensions.logging.azureappservices.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.azureappservices/2.0.0/microsoft.extensions.logging.azureappservices.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.azureappservices/2.0.0/microsoft.extensions.logging.azureappservices.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.configuration/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.configuration/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.configuration/2.0.0/microsoft.extensions.logging.configuration.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.configuration/2.0.0/microsoft.extensions.logging.configuration.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.configuration/2.0.0/microsoft.extensions.logging.configuration.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.console/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.console/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.console/2.0.0/microsoft.extensions.logging.console.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.console/2.0.0/microsoft.extensions.logging.console.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.console/2.0.0/microsoft.extensions.logging.console.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.debug/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.debug/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.debug/2.0.0/microsoft.extensions.logging.debug.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.debug/2.0.0/microsoft.extensions.logging.debug.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.debug/2.0.0/microsoft.extensions.logging.debug.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.eventsource/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.eventsource/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.eventsource/2.0.0/microsoft.extensions.logging.eventsource.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.eventsource/2.0.0/microsoft.extensions.logging.eventsource.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.eventsource/2.0.0/microsoft.extensions.logging.eventsource.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.tracesource/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.TraceSource.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.tracesource/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.TraceSource.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.tracesource/2.0.0/microsoft.extensions.logging.tracesource.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.tracesource/2.0.0/microsoft.extensions.logging.tracesource.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging.tracesource/2.0.0/microsoft.extensions.logging.tracesource.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging/2.0.0/microsoft.extensions.logging.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging/2.0.0/microsoft.extensions.logging.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.logging/2.0.0/microsoft.extensions.logging.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.objectpool/2.0.0/lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.objectpool/2.0.0/lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.objectpool/2.0.0/microsoft.extensions.objectpool.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.objectpool/2.0.0/microsoft.extensions.objectpool.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.objectpool/2.0.0/microsoft.extensions.objectpool.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.options.configurationextensions/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.options.configurationextensions/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.options.configurationextensions/2.0.0/microsoft.extensions.options.configurationextensions.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.options.configurationextensions/2.0.0/microsoft.extensions.options.configurationextensions.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.options.configurationextensions/2.0.0/microsoft.extensions.options.configurationextensions.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.options/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Options.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.options/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Options.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.options/2.0.0/microsoft.extensions.options.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.options/2.0.0/microsoft.extensions.options.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.options/2.0.0/microsoft.extensions.options.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.platformabstractions/1.1.0/lib/net451/Microsoft.Extensions.PlatformAbstractions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.platformabstractions/1.1.0/lib/net451/Microsoft.Extensions.PlatformAbstractions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.platformabstractions/1.1.0/lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.platformabstractions/1.1.0/lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.platformabstractions/1.1.0/microsoft.extensions.platformabstractions.1.1.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.platformabstractions/1.1.0/microsoft.extensions.platformabstractions.1.1.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.platformabstractions/1.1.0/microsoft.extensions.platformabstractions.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.primitives/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.primitives/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.primitives/2.0.0/microsoft.extensions.primitives.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.primitives/2.0.0/microsoft.extensions.primitives.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.primitives/2.0.0/microsoft.extensions.primitives.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.secretmanager.tools/2.0.0/lib/netcoreapp2.0/dotnet-user-secrets.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.secretmanager.tools/2.0.0/lib/netcoreapp2.0/dotnet-user-secrets.runtimeconfig.json +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.secretmanager.tools/2.0.0/microsoft.extensions.secretmanager.tools.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.secretmanager.tools/2.0.0/microsoft.extensions.secretmanager.tools.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.secretmanager.tools/2.0.0/microsoft.extensions.secretmanager.tools.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.secretmanager.tools/2.0.0/prefercliruntime +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.webencoders/2.0.0/lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.webencoders/2.0.0/lib/netstandard2.0/Microsoft.Extensions.WebEncoders.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.webencoders/2.0.0/microsoft.extensions.webencoders.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.webencoders/2.0.0/microsoft.extensions.webencoders.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.extensions.webencoders/2.0.0/microsoft.extensions.webencoders.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/MonoAndroid10/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.XML +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/MonoAndroid10/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/MonoAndroid10/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.pdb +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/MonoAndroid10/Microsoft.IdentityModel.Clients.ActiveDirectory.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/MonoAndroid10/Microsoft.IdentityModel.Clients.ActiveDirectory.pdb +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/MonoAndroid10/Microsoft.IdentityModel.Clients.ActiveDirectory.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/Xamarin.iOS10/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.XML +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/Xamarin.iOS10/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/Xamarin.iOS10/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.pdb +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/Xamarin.iOS10/Microsoft.IdentityModel.Clients.ActiveDirectory.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/Xamarin.iOS10/Microsoft.IdentityModel.Clients.ActiveDirectory.pdb +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/Xamarin.iOS10/Microsoft.IdentityModel.Clients.ActiveDirectory.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/net45/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.XML +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/net45/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/net45/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.pdb +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/net45/Microsoft.IdentityModel.Clients.ActiveDirectory.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/net45/Microsoft.IdentityModel.Clients.ActiveDirectory.pdb +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/net45/Microsoft.IdentityModel.Clients.ActiveDirectory.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/netcore45/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.XML +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/netcore45/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/netcore45/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.pdb +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/netcore45/Microsoft.IdentityModel.Clients.ActiveDirectory.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/netcore45/Microsoft.IdentityModel.Clients.ActiveDirectory.pdb +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/netcore45/Microsoft.IdentityModel.Clients.ActiveDirectory.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.pdb +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.pdb +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/portable-net45+win/Microsoft.IdentityModel.Clients.ActiveDirectory.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/portable-net45+win/Microsoft.IdentityModel.Clients.ActiveDirectory.pdb +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/portable-net45+win/Microsoft.IdentityModel.Clients.ActiveDirectory.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/microsoft.identitymodel.clients.activedirectory.3.14.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/microsoft.identitymodel.clients.activedirectory.3.14.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/microsoft.identitymodel.clients.activedirectory.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.Common/AdalEventSource.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.Common/AuthenticationContextIntegratedAuthExtensions.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.Common/AuthenticationResult.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.Common/ClientAssertionCertificate.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.Common/CommonAssemblyInfo.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.Common/Constants.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.Common/CryptographyHelper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.Common/EncodingHelper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.Common/LocalSettingsHelper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.Common/Logger.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.Common/PromptBehavior.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.Common/TokenCache.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.Common/WebProxyProvider.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Android/ADAL.PCL.Android.csproj +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Android/AuthenticationAgentActivity.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Android/AuthenticationAgentContinuationHelper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Android/AuthenticationRequest.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Android/BrokerConstants.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Android/BrokerHelper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Android/BrokerProxy.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Android/Constants.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Android/CryptographyHelper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Android/DeviceAuthHelper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Android/Logger.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Android/PlatformInformation.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Android/PlatformParameters.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Android/Properties/AssemblyInfo.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Android/Resources/AboutResources.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Android/Resources/Resource.Designer.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Android/Resources/Values/Strings.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Android/Resources/layout/WebAuthenticationBroker.axml +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Android/TokenCachePlugin.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Android/WebProxyProvider.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Android/WebUI.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Android/WebUIFactory.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.CoreCLR/ADAL.PCL.CoreCLR.csproj +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.CoreCLR/BrokerHelper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.CoreCLR/ClientAssertionCertificate.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.CoreCLR/CryptographyHelper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.CoreCLR/DeviceAuthHelper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.CoreCLR/PlatformInformation.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.CoreCLR/PlatformParameters.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.CoreCLR/Properties/AssemblyInfo.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.CoreCLR/TokenCachePlugin.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.CoreCLR/WebProxyProvider.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.CoreCLR/WebUIFactory.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/ADAL.PCL.Desktop.csproj +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/BrokerHelper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/CryptographyHelper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/CustomWebBrowser.CustomWebBrowserEvent.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/CustomWebBrowser.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/DeviceAuthHelper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/InteractiveWebUI.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/Native/BCryptNative.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/Native/ICngAlgorithm.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/Native/ICngAsymmetricAlgorithm.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/Native/NCryptNative.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/Native/RSACng.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/Native/Win32Native.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/Native/X509Native.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/NavigateErrorStatus.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/PlatformInformation.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/PlatformParameters.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/Properties/AssemblyInfo.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/SecureClientSecret.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/SilentWebUI.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/SilentWebUIDoneEventArgs.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/SilentWindowsFormsAuthenticationDialog.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/StaTaskScheduler.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/TokenCachePlugin.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/UserPasswordCredential.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/WebBrowserInterfaces.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/WebBrowserNavigateErrorEventArgs.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/WebUI.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/WebUIFactory.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/WinFormWebAuthenticationDialog.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.Desktop/WindowsFormsWebAuthenticationDialogBase.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.WinRT/ADAL.PCL.WinRT.csproj +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.WinRT/BrokerHelper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.WinRT/CryptographyHelper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.WinRT/DeviceAuthHelper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.WinRT/PlatformInformation.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.WinRT/PlatformParameters.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.WinRT/Properties/AssemblyInfo.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.WinRT/TokenCachePlugin.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.WinRT/WebUI.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.WinRT/WebUIFactory.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.iOS/ADAL.PCL.iOS.csproj +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.iOS/AdalCustomUrlProtocol.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.iOS/AdalInitializer.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.iOS/AuthenticationAgentUINavigationController.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.iOS/AuthenticationAgentUIViewController.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.iOS/AuthenticationContinuationHelper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.iOS/BrokerConstants.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.iOS/BrokerHelper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.iOS/BrokerKeyHelper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.iOS/Constants.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.iOS/CryptographyHelper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.iOS/DeviceAuthHelper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.iOS/GlobalSuppressions.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.iOS/Logger.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.iOS/PlatformInformation.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.iOS/PlatformParameters.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.iOS/Properties/AssemblyInfo.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.iOS/TokenCachePlugin.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.iOS/WebUI.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL.iOS/WebUIFactory.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/ADAL.PCL.csproj +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/AdalOption.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/AuthenticationContext.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/AuthenticationParameters.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/AuthenticationResult.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Authority/Authenticator.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Authority/AuthenticatorTemplate.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Authority/AuthenticatorTemplateList.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Authority/AuthorizationResult.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Authority/DeviceAuthJWTResponse.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Authority/IdToken.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Authority/RequestData.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Authority/RequestParameters.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Authority/TokenResponse.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Cache/CacheQueryData.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Cache/TokenCacheKey.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/ClientAssertion.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/ClientCredential.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/ClientCreds/ClientKey.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/ClientCreds/JsonWebToken.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/DeviceCodeResult.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Exceptions/AdalException.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Exceptions/AdalServiceException.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Exceptions/AdalSilentTokenAcquisitionException.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Exceptions/AdalUserMismatchException.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Exceptions/HttpRequestWrapperException.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Flows/AcquireTokenByAuthorizationCodeHandler.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Flows/AcquireTokenForClientHandler.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Flows/AcquireTokenHandlerBase.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Flows/AcquireTokenInteractiveHandler.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Flows/AcquireTokenOnBehalfHandler.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Flows/AcquireTokenSilentHandler.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Flows/AuthenticationResultEx.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Flows/CallState.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Flows/DeviceCode/AcquireDeviceCodeHandler.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Flows/DeviceCode/AcquireTokenByDeviceCodeHandler.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Flows/DeviceCode/DeviceCodeResponse.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Flows/NonInteractive/AcquireTokenNonInteractiveHandler.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Flows/NonInteractive/MexParser.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Flows/NonInteractive/UserRealmDiscoveryResponse.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Flows/NonInteractive/WsTrustRequest.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Flows/NonInteractive/WsTrustResponse.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Http/AdalHttpClient.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Http/HttpClientFactory.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Http/HttpClientWrapper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Http/HttpMessageHandlerFactory.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Http/HttpWebResponseWrapper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Http/IHttpWebResponse.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/IAdalLogCallback.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/IClientAssertionCertificate.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/IPlatformParameters.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/ISecureClientSecret.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Platform/IBrokerHelper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Platform/ICryptographyHelper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Platform/IDeviceAuthHelper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Platform/IHttpClient.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Platform/IHttpClientFactory.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Platform/ITokenCachePlugin.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Platform/IWebProxyProvider.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Platform/IWebUI.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Platform/IWebUIFactory.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Platform/LoggerBase.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Platform/PlatformInformationBase.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Platform/PlatformPlugin.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Properties/AssemblyInfo.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/TokenCache.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/TokenCacheItem.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/TokenCacheNotificationArgs.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/UserAssertion.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/UserCredential.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/UserIdentifier.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/UserInfo.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Utilities/AdalIdHelper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Utilities/Base64UrlEncoder.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Utilities/Constants.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Utilities/EncodingHelper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Utilities/JsonHelper.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.clients.activedirectory/3.14.1/src/src/ADAL.PCL/Utilities/OAuthConstants.cs +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.logging/1.1.4/lib/net45/Microsoft.IdentityModel.Logging.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.logging/1.1.4/lib/net45/Microsoft.IdentityModel.Logging.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.logging/1.1.4/lib/net451/Microsoft.IdentityModel.Logging.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.logging/1.1.4/lib/net451/Microsoft.IdentityModel.Logging.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.logging/1.1.4/lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.logging/1.1.4/lib/netstandard1.4/Microsoft.IdentityModel.Logging.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.logging/1.1.4/microsoft.identitymodel.logging.1.1.4.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.logging/1.1.4/microsoft.identitymodel.logging.1.1.4.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.logging/1.1.4/microsoft.identitymodel.logging.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.protocols.openidconnect/2.1.4/lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.protocols.openidconnect/2.1.4/lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.protocols.openidconnect/2.1.4/lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.protocols.openidconnect/2.1.4/lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.protocols.openidconnect/2.1.4/lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.protocols.openidconnect/2.1.4/lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.protocols.openidconnect/2.1.4/microsoft.identitymodel.protocols.openidconnect.2.1.4.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.protocols.openidconnect/2.1.4/microsoft.identitymodel.protocols.openidconnect.2.1.4.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.protocols.openidconnect/2.1.4/microsoft.identitymodel.protocols.openidconnect.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.protocols/2.1.4/lib/net45/Microsoft.IdentityModel.Protocols.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.protocols/2.1.4/lib/net45/Microsoft.IdentityModel.Protocols.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.protocols/2.1.4/lib/net451/Microsoft.IdentityModel.Protocols.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.protocols/2.1.4/lib/net451/Microsoft.IdentityModel.Protocols.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.protocols/2.1.4/lib/netstandard1.4/Microsoft.IdentityModel.Protocols.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.protocols/2.1.4/lib/netstandard1.4/Microsoft.IdentityModel.Protocols.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.protocols/2.1.4/microsoft.identitymodel.protocols.2.1.4.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.protocols/2.1.4/microsoft.identitymodel.protocols.2.1.4.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.protocols/2.1.4/microsoft.identitymodel.protocols.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.tokens/5.1.4/lib/net45/Microsoft.IdentityModel.Tokens.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.tokens/5.1.4/lib/net45/Microsoft.IdentityModel.Tokens.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.tokens/5.1.4/lib/net451/Microsoft.IdentityModel.Tokens.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.tokens/5.1.4/lib/net451/Microsoft.IdentityModel.Tokens.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.tokens/5.1.4/lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.tokens/5.1.4/lib/netstandard1.4/Microsoft.IdentityModel.Tokens.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.tokens/5.1.4/microsoft.identitymodel.tokens.5.1.4.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.tokens/5.1.4/microsoft.identitymodel.tokens.5.1.4.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.identitymodel.tokens/5.1.4/microsoft.identitymodel.tokens.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.net.http.headers/2.0.1/lib/netstandard2.0/Microsoft.Net.Http.Headers.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.net.http.headers/2.0.1/lib/netstandard2.0/Microsoft.Net.Http.Headers.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.net.http.headers/2.0.1/microsoft.net.http.headers.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.net.http.headers/2.0.1/microsoft.net.http.headers.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.net.http.headers/2.0.1/microsoft.net.http.headers.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/Microsoft.NETCore.App.versions.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/build/netcoreapp2.0/Microsoft.NETCore.App.PlatformManifest.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/build/netcoreapp2.0/Microsoft.NETCore.App.props +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/build/netcoreapp2.0/Microsoft.NETCore.App.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/microsoft.netcore.app.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/microsoft.netcore.app.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/microsoft.netcore.app.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/Microsoft.CSharp.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/Microsoft.VisualBasic.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/Microsoft.VisualBasic.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/Microsoft.Win32.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/Microsoft.Win32.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.AppContext.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Buffers.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Buffers.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Collections.Concurrent.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Collections.Immutable.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Collections.Immutable.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Collections.NonGeneric.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Collections.NonGeneric.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Collections.Specialized.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Collections.Specialized.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Collections.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ComponentModel.Annotations.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ComponentModel.Composition.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ComponentModel.DataAnnotations.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ComponentModel.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ComponentModel.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ComponentModel.TypeConverter.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ComponentModel.TypeConverter.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ComponentModel.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ComponentModel.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Configuration.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Console.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Console.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Core.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Data.Common.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Data.Common.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Data.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.Contracts.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.Debug.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.Process.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.Process.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.StackTrace.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.StackTrace.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.Tools.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.TraceSource.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.TraceSource.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.Tracing.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Drawing.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Drawing.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Drawing.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Dynamic.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Globalization.Calendars.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Globalization.Calendars.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Globalization.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Globalization.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Globalization.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.Compression.FileSystem.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.Compression.ZipFile.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.Compression.ZipFile.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.Compression.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.FileSystem.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.FileSystem.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.FileSystem.Watcher.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.FileSystem.Watcher.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.FileSystem.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.FileSystem.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.IsolatedStorage.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.IsolatedStorage.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.MemoryMappedFiles.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.MemoryMappedFiles.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.Pipes.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.Pipes.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Linq.Expressions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Linq.Parallel.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Linq.Queryable.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Linq.Queryable.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Linq.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.Http.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.HttpListener.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.HttpListener.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.Mail.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.Mail.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.NameResolution.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.NameResolution.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.NetworkInformation.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.NetworkInformation.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.Ping.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.Ping.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.Requests.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.Requests.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.Security.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.Security.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.ServicePoint.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.ServicePoint.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.Sockets.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.Sockets.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.WebClient.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.WebClient.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.WebHeaderCollection.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.WebHeaderCollection.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.WebProxy.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.WebProxy.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.WebSockets.Client.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.WebSockets.Client.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.WebSockets.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.WebSockets.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Net.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Numerics.Vectors.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Numerics.Vectors.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Numerics.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ObjectModel.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.DispatchProxy.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.DispatchProxy.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.Emit.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.Emit.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.Metadata.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.Metadata.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.TypeExtensions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Resources.Reader.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Resources.Reader.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Resources.ResourceManager.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Resources.Writer.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Resources.Writer.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.Handles.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.Handles.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.InteropServices.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.Loader.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.Loader.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.Numerics.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.Serialization.Json.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.Serialization.Json.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.Serialization.Xml.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.Serialization.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Security.Claims.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Security.Claims.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Security.Cryptography.Csp.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Security.Cryptography.Csp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Security.Cryptography.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Security.Cryptography.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Security.Cryptography.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Security.Cryptography.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Security.Principal.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Security.SecureString.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Security.SecureString.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Security.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ServiceModel.Web.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ServiceProcess.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Text.Encoding.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Text.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Text.RegularExpressions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Threading.Overlapped.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Threading.Overlapped.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Threading.Tasks.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Threading.Tasks.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Threading.Tasks.Parallel.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Threading.Tasks.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Threading.Tasks.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Threading.Thread.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Threading.Thread.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Threading.ThreadPool.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Threading.ThreadPool.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Threading.Timer.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Threading.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Transactions.Local.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Transactions.Local.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Transactions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ValueTuple.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.ValueTuple.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Web.HttpUtility.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Web.HttpUtility.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Web.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Windows.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Xml.Linq.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Xml.ReaderWriter.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Xml.Serialization.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Xml.XDocument.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Xml.XPath.XDocument.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Xml.XPath.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Xml.XPath.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Xml.XPath.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Xml.XmlDocument.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Xml.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Xml.XmlSerializer.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Xml.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/WindowsBase.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/mscorlib.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/netstandard.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.0/runtime.json +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/Microsoft.NETCore.App.versions.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/build/netcoreapp2.0/Microsoft.NETCore.App.PlatformManifest.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/build/netcoreapp2.0/Microsoft.NETCore.App.props +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/build/netcoreapp2.0/Microsoft.NETCore.App.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/microsoft.netcore.app.2.0.3.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/microsoft.netcore.app.2.0.3.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/microsoft.netcore.app.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/Microsoft.CSharp.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/Microsoft.VisualBasic.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/Microsoft.VisualBasic.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/Microsoft.Win32.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/Microsoft.Win32.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.AppContext.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Buffers.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Buffers.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Collections.Concurrent.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Collections.Immutable.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Collections.Immutable.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Collections.NonGeneric.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Collections.NonGeneric.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Collections.Specialized.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Collections.Specialized.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Collections.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.ComponentModel.Annotations.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.ComponentModel.Composition.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.ComponentModel.DataAnnotations.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.ComponentModel.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.ComponentModel.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.ComponentModel.TypeConverter.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.ComponentModel.TypeConverter.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.ComponentModel.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.ComponentModel.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Configuration.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Console.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Console.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Core.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Data.Common.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Data.Common.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Data.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Diagnostics.Contracts.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Diagnostics.Debug.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Diagnostics.Process.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Diagnostics.Process.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Diagnostics.StackTrace.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Diagnostics.StackTrace.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Diagnostics.Tools.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Diagnostics.TraceSource.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Diagnostics.TraceSource.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Diagnostics.Tracing.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Drawing.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Drawing.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Drawing.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Dynamic.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Globalization.Calendars.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Globalization.Calendars.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Globalization.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Globalization.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Globalization.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.IO.Compression.FileSystem.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.IO.Compression.ZipFile.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.IO.Compression.ZipFile.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.IO.Compression.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.IO.FileSystem.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.IO.FileSystem.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.IO.FileSystem.Watcher.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.IO.FileSystem.Watcher.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.IO.FileSystem.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.IO.FileSystem.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.IO.IsolatedStorage.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.IO.IsolatedStorage.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.IO.MemoryMappedFiles.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.IO.MemoryMappedFiles.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.IO.Pipes.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.IO.Pipes.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.IO.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Linq.Expressions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Linq.Parallel.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Linq.Queryable.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Linq.Queryable.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Linq.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.Http.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.HttpListener.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.HttpListener.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.Mail.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.Mail.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.NameResolution.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.NameResolution.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.NetworkInformation.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.NetworkInformation.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.Ping.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.Ping.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.Requests.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.Requests.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.Security.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.Security.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.ServicePoint.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.ServicePoint.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.Sockets.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.Sockets.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.WebClient.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.WebClient.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.WebHeaderCollection.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.WebHeaderCollection.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.WebProxy.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.WebProxy.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.WebSockets.Client.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.WebSockets.Client.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.WebSockets.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.WebSockets.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Net.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Numerics.Vectors.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Numerics.Vectors.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Numerics.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.ObjectModel.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Reflection.DispatchProxy.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Reflection.DispatchProxy.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Reflection.Emit.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Reflection.Emit.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Reflection.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Reflection.Metadata.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Reflection.Metadata.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Reflection.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Reflection.TypeExtensions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Reflection.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Resources.Reader.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Resources.Reader.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Resources.ResourceManager.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Resources.Writer.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Resources.Writer.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Runtime.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Runtime.Handles.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Runtime.Handles.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Runtime.InteropServices.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Runtime.Loader.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Runtime.Loader.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Runtime.Numerics.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Runtime.Serialization.Json.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Runtime.Serialization.Json.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Runtime.Serialization.Xml.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Runtime.Serialization.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Security.Claims.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Security.Claims.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Security.Cryptography.Csp.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Security.Cryptography.Csp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Security.Cryptography.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Security.Cryptography.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Security.Cryptography.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Security.Cryptography.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Security.Principal.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Security.SecureString.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Security.SecureString.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Security.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.ServiceModel.Web.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.ServiceProcess.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Text.Encoding.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Text.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Text.RegularExpressions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Threading.Overlapped.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Threading.Overlapped.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Threading.Tasks.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Threading.Tasks.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Threading.Tasks.Parallel.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Threading.Tasks.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Threading.Tasks.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Threading.Thread.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Threading.Thread.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Threading.ThreadPool.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Threading.ThreadPool.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Threading.Timer.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Threading.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Transactions.Local.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Transactions.Local.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Transactions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.ValueTuple.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.ValueTuple.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Web.HttpUtility.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Web.HttpUtility.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Web.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Windows.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Xml.Linq.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Xml.ReaderWriter.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Xml.Serialization.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Xml.XDocument.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Xml.XPath.XDocument.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Xml.XPath.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Xml.XPath.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Xml.XPath.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Xml.XmlDocument.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Xml.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Xml.XmlSerializer.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.Xml.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/System.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/WindowsBase.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/mscorlib.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/ref/netcoreapp2.0/netstandard.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.3/runtime.json +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/Microsoft.NETCore.App.versions.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/build/netcoreapp2.0/Microsoft.NETCore.App.PlatformManifest.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/build/netcoreapp2.0/Microsoft.NETCore.App.props +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/build/netcoreapp2.0/Microsoft.NETCore.App.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/microsoft.netcore.app.2.0.4.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/microsoft.netcore.app.2.0.4.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/microsoft.netcore.app.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/Microsoft.CSharp.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/Microsoft.CSharp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/Microsoft.VisualBasic.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/Microsoft.VisualBasic.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/Microsoft.Win32.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/Microsoft.Win32.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.AppContext.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Buffers.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Buffers.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Collections.Concurrent.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Collections.Immutable.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Collections.Immutable.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Collections.NonGeneric.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Collections.NonGeneric.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Collections.Specialized.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Collections.Specialized.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Collections.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.ComponentModel.Annotations.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.ComponentModel.Composition.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.ComponentModel.DataAnnotations.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.ComponentModel.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.ComponentModel.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.ComponentModel.TypeConverter.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.ComponentModel.TypeConverter.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.ComponentModel.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.ComponentModel.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Configuration.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Console.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Console.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Core.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Data.Common.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Data.Common.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Data.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Diagnostics.Contracts.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Diagnostics.Debug.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Diagnostics.Process.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Diagnostics.Process.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Diagnostics.StackTrace.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Diagnostics.StackTrace.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Diagnostics.Tools.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Diagnostics.TraceSource.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Diagnostics.TraceSource.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Diagnostics.Tracing.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Drawing.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Drawing.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Drawing.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Dynamic.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Globalization.Calendars.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Globalization.Calendars.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Globalization.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Globalization.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Globalization.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.IO.Compression.FileSystem.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.IO.Compression.ZipFile.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.IO.Compression.ZipFile.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.IO.Compression.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.IO.FileSystem.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.IO.FileSystem.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.IO.FileSystem.Watcher.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.IO.FileSystem.Watcher.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.IO.FileSystem.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.IO.FileSystem.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.IO.IsolatedStorage.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.IO.IsolatedStorage.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.IO.MemoryMappedFiles.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.IO.MemoryMappedFiles.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.IO.Pipes.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.IO.Pipes.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.IO.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Linq.Expressions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Linq.Parallel.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Linq.Queryable.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Linq.Queryable.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Linq.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.Http.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.HttpListener.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.HttpListener.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.Mail.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.Mail.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.NameResolution.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.NameResolution.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.NetworkInformation.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.NetworkInformation.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.Ping.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.Ping.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.Requests.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.Requests.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.Security.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.Security.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.ServicePoint.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.ServicePoint.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.Sockets.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.Sockets.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.WebClient.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.WebClient.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.WebHeaderCollection.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.WebHeaderCollection.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.WebProxy.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.WebProxy.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.WebSockets.Client.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.WebSockets.Client.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.WebSockets.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.WebSockets.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Net.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Numerics.Vectors.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Numerics.Vectors.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Numerics.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.ObjectModel.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Reflection.DispatchProxy.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Reflection.DispatchProxy.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Reflection.Emit.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Reflection.Emit.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Reflection.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Reflection.Metadata.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Reflection.Metadata.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Reflection.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Reflection.TypeExtensions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Reflection.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Resources.Reader.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Resources.Reader.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Resources.ResourceManager.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Resources.Writer.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Resources.Writer.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Runtime.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Runtime.Handles.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Runtime.Handles.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Runtime.InteropServices.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Runtime.Loader.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Runtime.Loader.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Runtime.Numerics.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Runtime.Serialization.Json.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Runtime.Serialization.Json.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Runtime.Serialization.Xml.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Runtime.Serialization.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Security.Claims.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Security.Claims.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Security.Cryptography.Csp.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Security.Cryptography.Csp.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Security.Cryptography.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Security.Cryptography.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Security.Cryptography.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Security.Cryptography.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Security.Principal.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Security.SecureString.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Security.SecureString.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Security.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.ServiceModel.Web.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.ServiceProcess.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Text.Encoding.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Text.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Text.RegularExpressions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Threading.Overlapped.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Threading.Overlapped.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Threading.Tasks.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Threading.Tasks.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Threading.Tasks.Parallel.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Threading.Tasks.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Threading.Tasks.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Threading.Thread.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Threading.Thread.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Threading.ThreadPool.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Threading.ThreadPool.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Threading.Timer.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Threading.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Transactions.Local.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Transactions.Local.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Transactions.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.ValueTuple.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.ValueTuple.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Web.HttpUtility.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Web.HttpUtility.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Web.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Windows.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Xml.Linq.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Xml.ReaderWriter.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Xml.Serialization.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Xml.XDocument.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Xml.XPath.XDocument.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Xml.XPath.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Xml.XPath.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Xml.XPath.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Xml.XmlDocument.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Xml.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Xml.XmlSerializer.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.Xml.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/System.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/WindowsBase.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/mscorlib.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/ref/netcoreapp2.0/netstandard.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.app/2.0.4/runtime.json +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnetapphost/2.0.0/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnetapphost/2.0.0/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnetapphost/2.0.0/microsoft.netcore.dotnetapphost.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnetapphost/2.0.0/microsoft.netcore.dotnetapphost.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnetapphost/2.0.0/microsoft.netcore.dotnetapphost.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnetapphost/2.0.0/runtime.json +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnetapphost/2.0.3/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnetapphost/2.0.3/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnetapphost/2.0.3/microsoft.netcore.dotnetapphost.2.0.3.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnetapphost/2.0.3/microsoft.netcore.dotnetapphost.2.0.3.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnetapphost/2.0.3/microsoft.netcore.dotnetapphost.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnetapphost/2.0.3/runtime.json +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnetapphost/2.0.4/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnetapphost/2.0.4/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnetapphost/2.0.4/microsoft.netcore.dotnetapphost.2.0.4.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnetapphost/2.0.4/microsoft.netcore.dotnetapphost.2.0.4.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnetapphost/2.0.4/microsoft.netcore.dotnetapphost.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnetapphost/2.0.4/runtime.json +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostpolicy/2.0.0/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostpolicy/2.0.0/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostpolicy/2.0.0/microsoft.netcore.dotnethostpolicy.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostpolicy/2.0.0/microsoft.netcore.dotnethostpolicy.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostpolicy/2.0.0/microsoft.netcore.dotnethostpolicy.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostpolicy/2.0.0/runtime.json +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostpolicy/2.0.3/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostpolicy/2.0.3/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostpolicy/2.0.3/microsoft.netcore.dotnethostpolicy.2.0.3.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostpolicy/2.0.3/microsoft.netcore.dotnethostpolicy.2.0.3.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostpolicy/2.0.3/microsoft.netcore.dotnethostpolicy.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostpolicy/2.0.3/runtime.json +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostpolicy/2.0.4/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostpolicy/2.0.4/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostpolicy/2.0.4/microsoft.netcore.dotnethostpolicy.2.0.4.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostpolicy/2.0.4/microsoft.netcore.dotnethostpolicy.2.0.4.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostpolicy/2.0.4/microsoft.netcore.dotnethostpolicy.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostpolicy/2.0.4/runtime.json +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostresolver/2.0.0/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostresolver/2.0.0/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostresolver/2.0.0/microsoft.netcore.dotnethostresolver.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostresolver/2.0.0/microsoft.netcore.dotnethostresolver.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostresolver/2.0.0/microsoft.netcore.dotnethostresolver.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostresolver/2.0.0/runtime.json +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostresolver/2.0.3/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostresolver/2.0.3/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostresolver/2.0.3/microsoft.netcore.dotnethostresolver.2.0.3.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostresolver/2.0.3/microsoft.netcore.dotnethostresolver.2.0.3.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostresolver/2.0.3/microsoft.netcore.dotnethostresolver.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostresolver/2.0.3/runtime.json +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostresolver/2.0.4/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostresolver/2.0.4/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostresolver/2.0.4/microsoft.netcore.dotnethostresolver.2.0.4.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostresolver/2.0.4/microsoft.netcore.dotnethostresolver.2.0.4.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostresolver/2.0.4/microsoft.netcore.dotnethostresolver.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.dotnethostresolver/2.0.4/runtime.json +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/1.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/1.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/1.0.1/lib/netstandard1.0/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/1.0.1/microsoft.netcore.platforms.1.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/1.0.1/microsoft.netcore.platforms.1.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/1.0.1/microsoft.netcore.platforms.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/1.0.1/runtime.json +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/1.0.2/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/1.0.2/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/1.0.2/lib/netstandard1.0/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/1.0.2/microsoft.netcore.platforms.1.0.2.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/1.0.2/microsoft.netcore.platforms.1.0.2.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/1.0.2/microsoft.netcore.platforms.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/1.0.2/runtime.json +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/1.1.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/1.1.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/1.1.0/lib/netstandard1.0/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/1.1.0/runtime.json +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/2.0.0/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/2.0.0/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/2.0.0/lib/netstandard1.0/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/2.0.0/microsoft.netcore.platforms.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/2.0.0/microsoft.netcore.platforms.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/2.0.0/microsoft.netcore.platforms.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/2.0.0/runtime.json +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/2.0.0/useSharedDesignerContext.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/2.0.0/version.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/2.0.1/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/2.0.1/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/2.0.1/lib/netstandard1.0/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/2.0.1/microsoft.netcore.platforms.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/2.0.1/microsoft.netcore.platforms.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/2.0.1/microsoft.netcore.platforms.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/2.0.1/runtime.json +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/2.0.1/useSharedDesignerContext.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/2.0.1/version.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.targets/1.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.targets/1.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.targets/1.0.1/lib/netstandard1.0/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.targets/1.0.1/microsoft.netcore.targets.1.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.targets/1.0.1/microsoft.netcore.targets.1.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.targets/1.0.1/microsoft.netcore.targets.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.targets/1.0.1/runtime.json +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.targets/1.1.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.targets/1.1.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.targets/1.1.0/lib/netstandard1.0/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.targets/1.1.0/runtime.json +dotnet/sdk/NuGetFallbackFolder/microsoft.rest.clientruntime.azure/3.3.7/lib/net452/Microsoft.Rest.ClientRuntime.Azure.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.rest.clientruntime.azure/3.3.7/lib/net452/Microsoft.Rest.ClientRuntime.Azure.runtimeconfig.json +dotnet/sdk/NuGetFallbackFolder/microsoft.rest.clientruntime.azure/3.3.7/lib/net452/Microsoft.Rest.ClientRuntime.Azure.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.rest.clientruntime.azure/3.3.7/lib/netstandard1.4/Microsoft.Rest.ClientRuntime.Azure.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.rest.clientruntime.azure/3.3.7/lib/netstandard1.4/Microsoft.Rest.ClientRuntime.Azure.runtimeconfig.json +dotnet/sdk/NuGetFallbackFolder/microsoft.rest.clientruntime.azure/3.3.7/lib/netstandard1.4/Microsoft.Rest.ClientRuntime.Azure.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.rest.clientruntime.azure/3.3.7/microsoft.rest.clientruntime.azure.3.3.7.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.rest.clientruntime.azure/3.3.7/microsoft.rest.clientruntime.azure.3.3.7.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.rest.clientruntime.azure/3.3.7/microsoft.rest.clientruntime.azure.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.rest.clientruntime/2.3.8/lib/net452/Microsoft.Rest.ClientRuntime.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.rest.clientruntime/2.3.8/lib/net452/Microsoft.Rest.ClientRuntime.runtimeconfig.json +dotnet/sdk/NuGetFallbackFolder/microsoft.rest.clientruntime/2.3.8/lib/net452/Microsoft.Rest.ClientRuntime.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.rest.clientruntime/2.3.8/lib/netstandard1.4/Microsoft.Rest.ClientRuntime.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.rest.clientruntime/2.3.8/lib/netstandard1.4/Microsoft.Rest.ClientRuntime.runtimeconfig.json +dotnet/sdk/NuGetFallbackFolder/microsoft.rest.clientruntime/2.3.8/lib/netstandard1.4/Microsoft.Rest.ClientRuntime.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.rest.clientruntime/2.3.8/microsoft.rest.clientruntime.2.3.8.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.rest.clientruntime/2.3.8/microsoft.rest.clientruntime.2.3.8.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.rest.clientruntime/2.3.8/microsoft.rest.clientruntime.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.browserlink/2.0.1/lib/netstandard2.0/Microsoft.VisualStudio.Web.BrowserLink.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.browserlink/2.0.1/lib/netstandard2.0/Microsoft.VisualStudio.Web.BrowserLink.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.browserlink/2.0.1/microsoft.visualstudio.web.browserlink.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.browserlink/2.0.1/microsoft.visualstudio.web.browserlink.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.browserlink/2.0.1/microsoft.visualstudio.web.browserlink.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.contracts/2.0.1/lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.contracts/2.0.1/lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.contracts/2.0.1/microsoft.visualstudio.web.codegeneration.contracts.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.contracts/2.0.1/microsoft.visualstudio.web.codegeneration.contracts.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.contracts/2.0.1/microsoft.visualstudio.web.codegeneration.contracts.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.core/2.0.1/lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.core/2.0.1/lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.core/2.0.1/microsoft.visualstudio.web.codegeneration.core.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.core/2.0.1/microsoft.visualstudio.web.codegeneration.core.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.core/2.0.1/microsoft.visualstudio.web.codegeneration.core.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.design/2.0.1/lib/net461/dotnet-aspnet-codegenerator-design.exe +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.design/2.0.1/lib/net461/dotnet-aspnet-codegenerator-design.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.design/2.0.1/lib/netcoreapp2.0/dotnet-aspnet-codegenerator-design.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.design/2.0.1/lib/netcoreapp2.0/dotnet-aspnet-codegenerator-design.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.design/2.0.1/microsoft.visualstudio.web.codegeneration.design.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.design/2.0.1/microsoft.visualstudio.web.codegeneration.design.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.design/2.0.1/microsoft.visualstudio.web.codegeneration.design.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.design/2.0.1/runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.exe +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.design/2.0.1/runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.design/2.0.1/runtimes/win-arm64/lib/net461/dotnet-aspnet-codegenerator-design.exe +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.design/2.0.1/runtimes/win-arm64/lib/net461/dotnet-aspnet-codegenerator-design.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.design/2.0.1/runtimes/win7-x64/lib/net461/dotnet-aspnet-codegenerator-design.exe +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.design/2.0.1/runtimes/win7-x64/lib/net461/dotnet-aspnet-codegenerator-design.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.design/2.0.1/runtimes/win7-x86/lib/net461/dotnet-aspnet-codegenerator-design.exe +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.design/2.0.1/runtimes/win7-x86/lib/net461/dotnet-aspnet-codegenerator-design.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.entityframeworkcore/2.0.1/Templates/DbContext/NewLocalDbContext.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.entityframeworkcore/2.0.1/lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.entityframeworkcore/2.0.1/lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.entityframeworkcore/2.0.1/microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.entityframeworkcore/2.0.1/microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.entityframeworkcore/2.0.1/microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.templating/2.0.1/lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.templating/2.0.1/lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.templating/2.0.1/microsoft.visualstudio.web.codegeneration.templating.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.templating/2.0.1/microsoft.visualstudio.web.codegeneration.templating.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.templating/2.0.1/microsoft.visualstudio.web.codegeneration.templating.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.tools/2.0.1/build/microsoft.visualstudio.web.codegeneration.tools.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.tools/2.0.1/buildMultiTargeting/microsoft.visualstudio.web.codegeneration.tools.targets +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.tools/2.0.1/lib/netcoreapp2.0/dotnet-aspnet-codegenerator.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.tools/2.0.1/lib/netcoreapp2.0/dotnet-aspnet-codegenerator.runtimeconfig.json +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.tools/2.0.1/microsoft.visualstudio.web.codegeneration.tools.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.tools/2.0.1/microsoft.visualstudio.web.codegeneration.tools.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.tools/2.0.1/microsoft.visualstudio.web.codegeneration.tools.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.tools/2.0.1/prefercliruntime +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.tools/2.0.1/toolassets/net461/Microsoft.VisualStudio.Web.CodeGeneration.Msbuild.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.tools/2.0.1/toolassets/netcoreapp2.0/Microsoft.VisualStudio.Web.CodeGeneration.Msbuild.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.utils/2.0.1/lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.utils/2.0.1/lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.utils/2.0.1/microsoft.visualstudio.web.codegeneration.utils.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.utils/2.0.1/microsoft.visualstudio.web.codegeneration.utils.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration.utils/2.0.1/microsoft.visualstudio.web.codegeneration.utils.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration/2.0.1/lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration/2.0.1/lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration/2.0.1/microsoft.visualstudio.web.codegeneration.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration/2.0.1/microsoft.visualstudio.web.codegeneration.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegeneration/2.0.1/microsoft.visualstudio.web.codegeneration.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Generators/ParameterDefinitions/area.json +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Generators/ParameterDefinitions/controller.json +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Generators/ParameterDefinitions/razorpage.json +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Generators/ParameterDefinitions/view.json +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/ControllerGenerator/ApiControllerWIthActions.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/ControllerGenerator/ApiControllerWithContext.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/ControllerGenerator/ApiEmptyController.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/ControllerGenerator/ControllerWithActions.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/ControllerGenerator/EmptyController.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/ControllerGenerator/MvcControllerWithContext.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/MvcLayout/Error.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/MvcLayout/_Layout.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/RazorPageGenerator/Create.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/RazorPageGenerator/CreatePageModel.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/RazorPageGenerator/Delete.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/RazorPageGenerator/DeletePageModel.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/RazorPageGenerator/Details.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/RazorPageGenerator/DetailsPageModel.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/RazorPageGenerator/Edit.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/RazorPageGenerator/EditPageModel.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/RazorPageGenerator/Empty.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/RazorPageGenerator/EmptyPageModel.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/RazorPageGenerator/List.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/RazorPageGenerator/ListPageModel.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/RazorPageGenerator/_ValidationScriptsPartial.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/Startup/ReadMe.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/Startup/Startup.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/ViewGenerator/Create.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/ViewGenerator/Delete.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/ViewGenerator/Details.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/ViewGenerator/Edit.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/ViewGenerator/Empty.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/ViewGenerator/List.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/Templates/ViewGenerator/_ValidationScriptsPartial.cshtml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/microsoft.visualstudio.web.codegenerators.mvc.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/microsoft.visualstudio.web.codegenerators.mvc.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.visualstudio.web.codegenerators.mvc/2.0.1/microsoft.visualstudio.web.codegenerators.mvc.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/lib/net46/Microsoft.Win32.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/microsoft.win32.primitives.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/microsoft.win32.primitives.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/microsoft.win32.primitives.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/ref/net46/Microsoft.Win32.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/ref/netstandard1.3/Microsoft.Win32.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/ref/netstandard1.3/Microsoft.Win32.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.0.1/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/lib/net46/Microsoft.Win32.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/microsoft.win32.primitives.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/microsoft.win32.primitives.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/microsoft.win32.primitives.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/ref/net46/Microsoft.Win32.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/ref/netstandard1.3/Microsoft.Win32.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/ref/netstandard1.3/Microsoft.Win32.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.primitives/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.0.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.0.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.0.0/lib/net46/Microsoft.Win32.Registry.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.0.0/microsoft.win32.registry.4.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.0.0/microsoft.win32.registry.4.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.0.0/microsoft.win32.registry.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.0.0/ref/net46/Microsoft.Win32.Registry.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.0.0/ref/netstandard1.3/Microsoft.Win32.Registry.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.0.0/ref/netstandard1.3/Microsoft.Win32.Registry.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.0.0/ref/netstandard1.3/de/Microsoft.Win32.Registry.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.0.0/ref/netstandard1.3/es/Microsoft.Win32.Registry.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.0.0/ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.0.0/ref/netstandard1.3/it/Microsoft.Win32.Registry.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.0.0/ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.0.0/ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.0.0/ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.0.0/ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.0.0/ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.0.0/runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.0.0/runtimes/win/lib/net46/Microsoft.Win32.Registry.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.0.0/runtimes/win/lib/netcore50/_._ +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.0.0/runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/lib/net46/Microsoft.Win32.Registry.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/lib/net461/Microsoft.Win32.Registry.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/lib/netstandard1.3/Microsoft.Win32.Registry.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/lib/netstandard2.0/Microsoft.Win32.Registry.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/microsoft.win32.registry.4.4.0.nupkg +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/microsoft.win32.registry.4.4.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/microsoft.win32.registry.nuspec +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/ref/net46/Microsoft.Win32.Registry.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/ref/net461/Microsoft.Win32.Registry.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/ref/net461/Microsoft.Win32.Registry.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/ref/netstandard1.3/Microsoft.Win32.Registry.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/ref/netstandard1.3/Microsoft.Win32.Registry.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/ref/netstandard1.3/de/Microsoft.Win32.Registry.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/ref/netstandard1.3/es/Microsoft.Win32.Registry.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/ref/netstandard1.3/it/Microsoft.Win32.Registry.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/ref/netstandard2.0/Microsoft.Win32.Registry.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/ref/netstandard2.0/Microsoft.Win32.Registry.xml +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/runtimes/unix/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/runtimes/win/lib/net46/Microsoft.Win32.Registry.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/runtimes/win/lib/net461/Microsoft.Win32.Registry.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/useSharedDesignerContext.txt +dotnet/sdk/NuGetFallbackFolder/microsoft.win32.registry/4.4.0/version.txt +dotnet/sdk/NuGetFallbackFolder/netstandard.library/1.6.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/netstandard.library/1.6.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/netstandard.library/1.6.0/netstandard.library.1.6.0.nupkg +dotnet/sdk/NuGetFallbackFolder/netstandard.library/1.6.0/netstandard.library.1.6.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/netstandard.library/1.6.0/netstandard.library.nuspec +dotnet/sdk/NuGetFallbackFolder/netstandard.library/1.6.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/netstandard.library/1.6.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/netstandard.library/1.6.1/netstandard.library.1.6.1.nupkg +dotnet/sdk/NuGetFallbackFolder/netstandard.library/1.6.1/netstandard.library.1.6.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/netstandard.library/1.6.1/netstandard.library.nuspec +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/NETStandard.Library.targets +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/NETStandard.Library.targets +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.AppContext.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Collections.Concurrent.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Collections.NonGeneric.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Collections.Specialized.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Collections.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.ComponentModel.Composition.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.ComponentModel.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.ComponentModel.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Console.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Core.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Data.Common.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Data.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Diagnostics.Contracts.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Diagnostics.Debug.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Diagnostics.Process.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Diagnostics.Tools.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Diagnostics.Tracing.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Drawing.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Drawing.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Dynamic.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Globalization.Calendars.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Globalization.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Globalization.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.IO.Compression.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.IO.FileSystem.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.IO.IsolatedStorage.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.IO.Pipes.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.IO.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Linq.Expressions.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Linq.Parallel.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Linq.Queryable.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Linq.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Net.Http.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Net.NameResolution.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Net.NetworkInformation.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Net.Ping.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Net.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Net.Requests.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Net.Security.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Net.Sockets.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Net.WebSockets.Client.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Net.WebSockets.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Net.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Numerics.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.ObjectModel.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Reflection.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Reflection.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Reflection.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Resources.Reader.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Resources.ResourceManager.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Resources.Writer.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Runtime.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Runtime.Handles.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Runtime.InteropServices.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Runtime.Numerics.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Runtime.Serialization.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Security.Claims.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Security.Principal.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Security.SecureString.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.ServiceModel.Web.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Text.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Text.RegularExpressions.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Threading.Overlapped.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Threading.Tasks.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Threading.Thread.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Threading.ThreadPool.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Threading.Timer.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Threading.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Transactions.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.ValueTuple.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Web.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Windows.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Xml.Linq.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Xml.ReaderWriter.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Xml.Serialization.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Xml.XDocument.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Xml.XPath.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Xml.XmlDocument.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Xml.XmlSerializer.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.Xml.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/System.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/mscorlib.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/netstandard.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/build/netstandard2.0/ref/netstandard.xml +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/lib/netstandard1.0/_._ +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/netstandard.library.2.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/netstandard.library.2.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.0/netstandard.library.nuspec +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/NETStandard.Library.targets +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/NETStandard.Library.targets +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.AppContext.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Collections.Concurrent.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Collections.NonGeneric.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Collections.Specialized.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Collections.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.ComponentModel.Composition.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.ComponentModel.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.ComponentModel.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Console.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Core.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Data.Common.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Data.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Diagnostics.Contracts.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Diagnostics.Debug.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Diagnostics.Process.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Diagnostics.Tools.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Diagnostics.Tracing.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Drawing.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Drawing.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Dynamic.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Globalization.Calendars.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Globalization.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Globalization.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.IO.Compression.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.IO.FileSystem.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.IO.IsolatedStorage.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.IO.Pipes.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.IO.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Linq.Expressions.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Linq.Parallel.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Linq.Queryable.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Linq.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Net.Http.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Net.NameResolution.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Net.NetworkInformation.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Net.Ping.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Net.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Net.Requests.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Net.Security.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Net.Sockets.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Net.WebSockets.Client.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Net.WebSockets.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Net.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Numerics.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.ObjectModel.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Reflection.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Reflection.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Reflection.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Resources.Reader.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Resources.ResourceManager.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Resources.Writer.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Runtime.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Runtime.Handles.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Runtime.InteropServices.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Runtime.Numerics.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Runtime.Serialization.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Security.Claims.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Security.Principal.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Security.SecureString.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.ServiceModel.Web.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Text.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Text.RegularExpressions.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Threading.Overlapped.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Threading.Tasks.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Threading.Thread.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Threading.ThreadPool.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Threading.Timer.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Threading.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Transactions.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.ValueTuple.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Web.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Windows.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Xml.Linq.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Xml.ReaderWriter.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Xml.Serialization.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Xml.XDocument.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Xml.XPath.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Xml.XmlDocument.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Xml.XmlSerializer.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.Xml.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/System.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/mscorlib.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/netstandard.dll +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/build/netstandard2.0/ref/netstandard.xml +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/lib/netstandard1.0/_._ +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/netstandard.library.2.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/netstandard.library.2.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.1/netstandard.library.nuspec +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json.bson/1.0.1/lib/net45/Newtonsoft.Json.Bson.dll +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json.bson/1.0.1/lib/net45/Newtonsoft.Json.Bson.xml +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json.bson/1.0.1/lib/netstandard1.3/Newtonsoft.Json.Bson.dll +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json.bson/1.0.1/lib/netstandard1.3/Newtonsoft.Json.Bson.xml +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json.bson/1.0.1/newtonsoft.json.bson.1.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json.bson/1.0.1/newtonsoft.json.bson.1.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json.bson/1.0.1/newtonsoft.json.bson.nuspec +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/10.0.1/lib/net20/Newtonsoft.Json.dll +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/10.0.1/lib/net20/Newtonsoft.Json.xml +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/10.0.1/lib/net35/Newtonsoft.Json.dll +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/10.0.1/lib/net35/Newtonsoft.Json.xml +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/10.0.1/lib/net40/Newtonsoft.Json.dll +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/10.0.1/lib/net40/Newtonsoft.Json.xml +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/10.0.1/lib/net45/Newtonsoft.Json.dll +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/10.0.1/lib/net45/Newtonsoft.Json.xml +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/10.0.1/lib/netstandard1.0/Newtonsoft.Json.dll +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/10.0.1/lib/netstandard1.0/Newtonsoft.Json.xml +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/10.0.1/lib/netstandard1.3/Newtonsoft.Json.dll +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/10.0.1/lib/netstandard1.3/Newtonsoft.Json.xml +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/10.0.1/lib/portable-net45+win8+wpa81+wp8/Newtonsoft.Json.dll +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/10.0.1/lib/portable-net45+win8+wpa81+wp8/Newtonsoft.Json.xml +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/10.0.1/newtonsoft.json.10.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/10.0.1/newtonsoft.json.10.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/10.0.1/newtonsoft.json.nuspec +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/10.0.1/tools/install.ps1 +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/9.0.1/lib/net20/Newtonsoft.Json.dll +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/9.0.1/lib/net20/Newtonsoft.Json.xml +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/9.0.1/lib/net35/Newtonsoft.Json.dll +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/9.0.1/lib/net35/Newtonsoft.Json.xml +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/9.0.1/lib/net40/Newtonsoft.Json.dll +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/9.0.1/lib/net40/Newtonsoft.Json.xml +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/9.0.1/lib/net45/Newtonsoft.Json.dll +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/9.0.1/lib/net45/Newtonsoft.Json.xml +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/9.0.1/lib/netstandard1.0/Newtonsoft.Json.dll +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/9.0.1/lib/netstandard1.0/Newtonsoft.Json.xml +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/9.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/9.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/9.0.1/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/9.0.1/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/9.0.1/newtonsoft.json.9.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/9.0.1/newtonsoft.json.9.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/9.0.1/newtonsoft.json.nuspec +dotnet/sdk/NuGetFallbackFolder/newtonsoft.json/9.0.1/tools/install.ps1 +dotnet/sdk/NuGetFallbackFolder/nuget.frameworks/4.0.0/lib/net40-client/NuGet.Frameworks.dll +dotnet/sdk/NuGetFallbackFolder/nuget.frameworks/4.0.0/lib/net40-client/NuGet.Frameworks.xml +dotnet/sdk/NuGetFallbackFolder/nuget.frameworks/4.0.0/lib/net45/NuGet.Frameworks.dll +dotnet/sdk/NuGetFallbackFolder/nuget.frameworks/4.0.0/lib/net45/NuGet.Frameworks.xml +dotnet/sdk/NuGetFallbackFolder/nuget.frameworks/4.0.0/lib/netstandard1.3/NuGet.Frameworks.dll +dotnet/sdk/NuGetFallbackFolder/nuget.frameworks/4.0.0/lib/netstandard1.3/NuGet.Frameworks.xml +dotnet/sdk/NuGetFallbackFolder/nuget.frameworks/4.0.0/nuget.frameworks.4.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/nuget.frameworks/4.0.0/nuget.frameworks.4.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/nuget.frameworks/4.0.0/nuget.frameworks.nuspec +dotnet/sdk/NuGetFallbackFolder/remotion.linq/2.1.1/lib/net35/Remotion.Linq.XML +dotnet/sdk/NuGetFallbackFolder/remotion.linq/2.1.1/lib/net35/Remotion.Linq.dll +dotnet/sdk/NuGetFallbackFolder/remotion.linq/2.1.1/lib/net40/Remotion.Linq.XML +dotnet/sdk/NuGetFallbackFolder/remotion.linq/2.1.1/lib/net40/Remotion.Linq.dll +dotnet/sdk/NuGetFallbackFolder/remotion.linq/2.1.1/lib/net45/Remotion.Linq.XML +dotnet/sdk/NuGetFallbackFolder/remotion.linq/2.1.1/lib/net45/Remotion.Linq.dll +dotnet/sdk/NuGetFallbackFolder/remotion.linq/2.1.1/lib/netstandard1.0/Remotion.Linq.dll +dotnet/sdk/NuGetFallbackFolder/remotion.linq/2.1.1/lib/netstandard1.0/Remotion.Linq.xml +dotnet/sdk/NuGetFallbackFolder/remotion.linq/2.1.1/lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll +dotnet/sdk/NuGetFallbackFolder/remotion.linq/2.1.1/lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml +dotnet/sdk/NuGetFallbackFolder/remotion.linq/2.1.1/remotion.linq.2.1.1.nupkg +dotnet/sdk/NuGetFallbackFolder/remotion.linq/2.1.1/remotion.linq.2.1.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/remotion.linq/2.1.1/remotion.linq.nuspec +dotnet/sdk/NuGetFallbackFolder/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec +dotnet/sdk/NuGetFallbackFolder/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so +dotnet/sdk/NuGetFallbackFolder/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec +dotnet/sdk/NuGetFallbackFolder/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so +dotnet/sdk/NuGetFallbackFolder/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec +dotnet/sdk/NuGetFallbackFolder/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.data.sqlclient.sni/4.4.0/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.data.sqlclient.sni/4.4.0/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.data.sqlclient.sni/4.4.0/runtime.native.system.data.sqlclient.sni.4.4.0.nupkg +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.data.sqlclient.sni/4.4.0/runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.data.sqlclient.sni/4.4.0/runtime.native.system.data.sqlclient.sni.nuspec +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.data.sqlclient.sni/4.4.0/useSharedDesignerContext.txt +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.data.sqlclient.sni/4.4.0/version.txt +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.io.compression/4.1.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.io.compression/4.1.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.io.compression/4.1.0/lib/netstandard1.0/_._ +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.io.compression/4.1.0/runtime.native.system.io.compression.4.1.0.nupkg +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.io.compression/4.1.0/runtime.native.system.io.compression.4.1.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.io.compression/4.1.0/runtime.native.system.io.compression.nuspec +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.io.compression/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.io.compression/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.io.compression/4.3.0/lib/netstandard1.0/_._ +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.io.compression/4.3.0/runtime.native.system.io.compression.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.io.compression/4.3.0/runtime.native.system.io.compression.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.io.compression/4.3.0/runtime.native.system.io.compression.nuspec +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.net.http/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.net.http/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.net.http/4.0.1/lib/netstandard1.0/_._ +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.net.http/4.0.1/runtime.native.system.net.http.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.net.http/4.0.1/runtime.native.system.net.http.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.net.http/4.0.1/runtime.native.system.net.http.nuspec +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.net.http/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.net.http/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.net.http/4.3.0/lib/netstandard1.0/_._ +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.net.http/4.3.0/runtime.native.system.net.http.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.net.http/4.3.0/runtime.native.system.net.http.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.net.http/4.3.0/runtime.native.system.net.http.nuspec +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.net.security/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.net.security/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.net.security/4.3.0/lib/netstandard1.0/_._ +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.net.security/4.3.0/runtime.native.system.net.security.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.net.security/4.3.0/runtime.native.system.net.security.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.net.security/4.3.0/runtime.native.system.net.security.nuspec +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.security.cryptography.apple/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.security.cryptography.apple/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.security.cryptography.apple/4.3.0/lib/netstandard1.0/_._ +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.security.cryptography.apple/4.3.0/runtime.native.system.security.cryptography.apple.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.security.cryptography.apple/4.3.0/runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.security.cryptography.apple/4.3.0/runtime.native.system.security.cryptography.apple.nuspec +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.security.cryptography.openssl/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.security.cryptography.openssl/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.security.cryptography.openssl/4.3.0/lib/netstandard1.0/_._ +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.security.cryptography.openssl/4.3.0/runtime.native.system.security.cryptography.openssl.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.security.cryptography.openssl/4.3.0/runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.security.cryptography.openssl/4.3.0/runtime.native.system.security.cryptography.openssl.nuspec +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.security.cryptography/4.0.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.security.cryptography/4.0.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.security.cryptography/4.0.0/lib/netstandard1.0/_._ +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.security.cryptography/4.0.0/runtime.native.system.security.cryptography.4.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.security.cryptography/4.0.0/runtime.native.system.security.cryptography.4.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/runtime.native.system.security.cryptography/4.0.0/runtime.native.system.security.cryptography.nuspec +dotnet/sdk/NuGetFallbackFolder/runtime.native.system/4.0.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/runtime.native.system/4.0.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/runtime.native.system/4.0.0/lib/netstandard1.0/_._ +dotnet/sdk/NuGetFallbackFolder/runtime.native.system/4.0.0/runtime.native.system.4.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/runtime.native.system/4.0.0/runtime.native.system.4.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/runtime.native.system/4.0.0/runtime.native.system.nuspec +dotnet/sdk/NuGetFallbackFolder/runtime.native.system/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/runtime.native.system/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/runtime.native.system/4.3.0/lib/netstandard1.0/_._ +dotnet/sdk/NuGetFallbackFolder/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/runtime.native.system/4.3.0/runtime.native.system.nuspec +dotnet/sdk/NuGetFallbackFolder/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec +dotnet/sdk/NuGetFallbackFolder/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so +dotnet/sdk/NuGetFallbackFolder/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec +dotnet/sdk/NuGetFallbackFolder/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so +dotnet/sdk/NuGetFallbackFolder/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec +dotnet/sdk/NuGetFallbackFolder/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0/runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib +dotnet/sdk/NuGetFallbackFolder/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec +dotnet/sdk/NuGetFallbackFolder/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib +dotnet/sdk/NuGetFallbackFolder/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec +dotnet/sdk/NuGetFallbackFolder/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so +dotnet/sdk/NuGetFallbackFolder/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec +dotnet/sdk/NuGetFallbackFolder/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so +dotnet/sdk/NuGetFallbackFolder/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/runtime.ubuntu.16.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.nupkg +dotnet/sdk/NuGetFallbackFolder/runtime.ubuntu.16.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.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec +dotnet/sdk/NuGetFallbackFolder/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so +dotnet/sdk/NuGetFallbackFolder/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec +dotnet/sdk/NuGetFallbackFolder/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so +dotnet/sdk/NuGetFallbackFolder/runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0/runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg +dotnet/sdk/NuGetFallbackFolder/runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0/runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0/runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec +dotnet/sdk/NuGetFallbackFolder/runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0/runtimes/win-arm64/native/sni.dll +dotnet/sdk/NuGetFallbackFolder/runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0/useSharedDesignerContext.txt +dotnet/sdk/NuGetFallbackFolder/runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0/version.txt +dotnet/sdk/NuGetFallbackFolder/runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0/runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg +dotnet/sdk/NuGetFallbackFolder/runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0/runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0/runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec +dotnet/sdk/NuGetFallbackFolder/runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0/runtimes/win-x64/native/sni.dll +dotnet/sdk/NuGetFallbackFolder/runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0/useSharedDesignerContext.txt +dotnet/sdk/NuGetFallbackFolder/runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0/version.txt +dotnet/sdk/NuGetFallbackFolder/runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0/runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg +dotnet/sdk/NuGetFallbackFolder/runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0/runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0/runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec +dotnet/sdk/NuGetFallbackFolder/runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0/runtimes/win-x86/native/sni.dll +dotnet/sdk/NuGetFallbackFolder/runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0/useSharedDesignerContext.txt +dotnet/sdk/NuGetFallbackFolder/runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0/version.txt +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/build/wp8/SQLitePCLRaw.bundle_green.targets +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/build/wp80/arm/SQLitePCLRaw.batteries_green.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/build/wp80/arm/SQLitePCLRaw.batteries_v2.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/build/wp80/x86/SQLitePCLRaw.batteries_green.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/build/wp80/x86/SQLitePCLRaw.batteries_v2.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/MonoAndroid/SQLitePCLRaw.batteries_green.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/MonoAndroid/SQLitePCLRaw.batteries_v2.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/Xamarin.Mac20/SQLitePCLRaw.batteries_green.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/Xamarin.Mac20/SQLitePCLRaw.batteries_v2.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/net35/SQLitePCLRaw.batteries_green.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/net35/SQLitePCLRaw.batteries_v2.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/net40/SQLitePCLRaw.batteries_green.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/net40/SQLitePCLRaw.batteries_v2.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/net45/SQLitePCLRaw.batteries_green.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/net45/SQLitePCLRaw.batteries_v2.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/netcoreapp/SQLitePCLRaw.batteries_green.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/netcoreapp/SQLitePCLRaw.batteries_v2.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/netstandard1.1/SQLitePCLRaw.batteries_green.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/netstandard1.1/SQLitePCLRaw.batteries_v2.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/uap10.0/SQLitePCLRaw.batteries_green.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/uap10.0/SQLitePCLRaw.batteries_v2.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/win8/SQLitePCLRaw.batteries_green.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/win8/SQLitePCLRaw.batteries_v2.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/win81/SQLitePCLRaw.batteries_green.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/win81/SQLitePCLRaw.batteries_v2.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/wp8/_._ +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/wpa81/SQLitePCLRaw.batteries_green.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/lib/wpa81/SQLitePCLRaw.batteries_v2.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/sqlitepclraw.bundle_green.1.1.7.nupkg +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/sqlitepclraw.bundle_green.1.1.7.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.bundle_green/1.1.7/sqlitepclraw.bundle_green.nuspec +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.core/1.1.7/lib/MonoAndroid/SQLitePCLRaw.core.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.core/1.1.7/lib/Xamarin.Mac20/SQLitePCLRaw.core.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.core/1.1.7/lib/Xamarin.iOS10/SQLitePCLRaw.core.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.core/1.1.7/lib/net35/SQLitePCLRaw.core.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.core/1.1.7/lib/net40/SQLitePCLRaw.core.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.core/1.1.7/lib/net45/SQLitePCLRaw.core.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.core/1.1.7/lib/netstandard1.0/SQLitePCLRaw.core.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.core/1.1.7/lib/netstandard1.1/SQLitePCLRaw.core.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.core/1.1.7/lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.core.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.core/1.1.7/lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.core.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.core/1.1.7/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.core.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.core/1.1.7/lib/uap10.0/SQLitePCLRaw.core.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.core/1.1.7/lib/win8/SQLitePCLRaw.core.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.core/1.1.7/lib/win81/SQLitePCLRaw.core.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.core/1.1.7/lib/wpa81/SQLitePCLRaw.core.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.core/1.1.7/sqlitepclraw.core.1.1.7.nupkg +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.core/1.1.7/sqlitepclraw.core.1.1.7.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.core/1.1.7/sqlitepclraw.core.nuspec +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.lib.e_sqlite3.linux/1.1.7/build/net35/SQLitePCLRaw.lib.e_sqlite3.linux.targets +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.lib.e_sqlite3.linux/1.1.7/lib/net35/_._ +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.lib.e_sqlite3.linux/1.1.7/lib/netstandard1.0/_._ +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.lib.e_sqlite3.linux/1.1.7/lib/netstandard2.0/_._ +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.lib.e_sqlite3.linux/1.1.7/runtimes/linux-x64/native/libe_sqlite3.so +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.lib.e_sqlite3.linux/1.1.7/runtimes/linux-x86/native/libe_sqlite3.so +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.lib.e_sqlite3.linux/1.1.7/sqlitepclraw.lib.e_sqlite3.linux.1.1.7.nupkg +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.lib.e_sqlite3.linux/1.1.7/sqlitepclraw.lib.e_sqlite3.linux.1.1.7.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.lib.e_sqlite3.linux/1.1.7/sqlitepclraw.lib.e_sqlite3.linux.nuspec +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.lib.e_sqlite3.osx/1.1.7/build/net35/SQLitePCLRaw.lib.e_sqlite3.osx.targets +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.lib.e_sqlite3.osx/1.1.7/lib/net35/_._ +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.lib.e_sqlite3.osx/1.1.7/lib/netstandard1.0/_._ +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.lib.e_sqlite3.osx/1.1.7/lib/netstandard2.0/_._ +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.lib.e_sqlite3.osx/1.1.7/runtimes/osx-x64/native/libe_sqlite3.dylib +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.lib.e_sqlite3.osx/1.1.7/sqlitepclraw.lib.e_sqlite3.osx.1.1.7.nupkg +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.lib.e_sqlite3.osx/1.1.7/sqlitepclraw.lib.e_sqlite3.osx.1.1.7.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.lib.e_sqlite3.osx/1.1.7/sqlitepclraw.lib.e_sqlite3.osx.nuspec +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.lib.e_sqlite3.v110_xp/1.1.7/build/net35/SQLitePCLRaw.lib.e_sqlite3.v110_xp.targets +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.lib.e_sqlite3.v110_xp/1.1.7/lib/net35/_._ +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.lib.e_sqlite3.v110_xp/1.1.7/lib/netstandard1.0/_._ +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.lib.e_sqlite3.v110_xp/1.1.7/lib/netstandard2.0/_._ +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.lib.e_sqlite3.v110_xp/1.1.7/runtimes/win7-x64/native/e_sqlite3.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.lib.e_sqlite3.v110_xp/1.1.7/runtimes/win7-x86/native/e_sqlite3.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.lib.e_sqlite3.v110_xp/1.1.7/sqlitepclraw.lib.e_sqlite3.v110_xp.1.1.7.nupkg +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.lib.e_sqlite3.v110_xp/1.1.7/sqlitepclraw.lib.e_sqlite3.v110_xp.1.1.7.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.lib.e_sqlite3.v110_xp/1.1.7/sqlitepclraw.lib.e_sqlite3.v110_xp.nuspec +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.provider.e_sqlite3.netstandard11/1.1.7/lib/netstandard1.1/SQLitePCLRaw.provider.e_sqlite3.dll +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.provider.e_sqlite3.netstandard11/1.1.7/sqlitepclraw.provider.e_sqlite3.netstandard11.1.1.7.nupkg +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.provider.e_sqlite3.netstandard11/1.1.7/sqlitepclraw.provider.e_sqlite3.netstandard11.1.1.7.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/sqlitepclraw.provider.e_sqlite3.netstandard11/1.1.7/sqlitepclraw.provider.e_sqlite3.netstandard11.nuspec +dotnet/sdk/NuGetFallbackFolder/stackexchange.redis.strongname/1.2.4/lib/net45/StackExchange.Redis.StrongName.dll +dotnet/sdk/NuGetFallbackFolder/stackexchange.redis.strongname/1.2.4/lib/net45/StackExchange.Redis.StrongName.xml +dotnet/sdk/NuGetFallbackFolder/stackexchange.redis.strongname/1.2.4/lib/net46/StackExchange.Redis.StrongName.dll +dotnet/sdk/NuGetFallbackFolder/stackexchange.redis.strongname/1.2.4/lib/net46/StackExchange.Redis.StrongName.xml +dotnet/sdk/NuGetFallbackFolder/stackexchange.redis.strongname/1.2.4/lib/netstandard1.5/StackExchange.Redis.StrongName.dll +dotnet/sdk/NuGetFallbackFolder/stackexchange.redis.strongname/1.2.4/lib/netstandard1.5/StackExchange.Redis.StrongName.xml +dotnet/sdk/NuGetFallbackFolder/stackexchange.redis.strongname/1.2.4/stackexchange.redis.strongname.1.2.4.nupkg +dotnet/sdk/NuGetFallbackFolder/stackexchange.redis.strongname/1.2.4/stackexchange.redis.strongname.1.2.4.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/stackexchange.redis.strongname/1.2.4/stackexchange.redis.strongname.nuspec +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/lib/net46/System.AppContext.dll +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/lib/net463/System.AppContext.dll +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/lib/netcore50/System.AppContext.dll +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/lib/netstandard1.6/System.AppContext.dll +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/net46/System.AppContext.dll +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/net463/System.AppContext.dll +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/netstandard/_._ +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/netstandard1.3/System.AppContext.dll +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/netstandard1.3/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/netstandard1.3/de/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/netstandard1.3/es/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/netstandard1.3/fr/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/netstandard1.3/it/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/netstandard1.3/ja/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/netstandard1.3/ko/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/netstandard1.3/ru/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/netstandard1.3/zh-hans/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/netstandard1.3/zh-hant/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/netstandard1.6/System.AppContext.dll +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/netstandard1.6/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/netstandard1.6/de/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/netstandard1.6/es/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/netstandard1.6/fr/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/netstandard1.6/it/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/netstandard1.6/ja/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/netstandard1.6/ko/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/netstandard1.6/ru/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/netstandard1.6/zh-hans/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/netstandard1.6/zh-hant/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/runtimes/aot/lib/netcore50/System.AppContext.dll +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/system.appcontext.4.1.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/system.appcontext.4.1.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.1.0/system.appcontext.nuspec +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/lib/net46/System.AppContext.dll +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/lib/net463/System.AppContext.dll +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/lib/netcore50/System.AppContext.dll +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/lib/netstandard1.6/System.AppContext.dll +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/net46/System.AppContext.dll +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/net463/System.AppContext.dll +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/netstandard/_._ +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/netstandard1.3/System.AppContext.dll +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/netstandard1.3/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/netstandard1.3/de/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/netstandard1.3/es/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/netstandard1.3/fr/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/netstandard1.3/it/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/netstandard1.3/ja/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/netstandard1.3/ko/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/netstandard1.3/ru/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/netstandard1.3/zh-hans/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/netstandard1.3/zh-hant/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/netstandard1.6/System.AppContext.dll +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/netstandard1.6/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/netstandard1.6/de/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/netstandard1.6/es/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/netstandard1.6/fr/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/netstandard1.6/it/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/netstandard1.6/ja/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/netstandard1.6/ko/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/netstandard1.6/ru/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/netstandard1.6/zh-hans/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/netstandard1.6/zh-hant/System.AppContext.xml +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/runtimes/aot/lib/netcore50/System.AppContext.dll +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/system.appcontext.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/system.appcontext.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.appcontext/4.3.0/system.appcontext.nuspec +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.0.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.0.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.0.0/lib/netstandard1.1/.xml +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.0.0/lib/netstandard1.1/System.Buffers.dll +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.0.0/system.buffers.4.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.0.0/system.buffers.4.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.0.0/system.buffers.nuspec +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.3.0/lib/netstandard1.1/.xml +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.3.0/lib/netstandard1.1/System.Buffers.dll +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.3.0/system.buffers.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.3.0/system.buffers.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.3.0/system.buffers.nuspec +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.4.0/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.4.0/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.4.0/lib/netcoreapp2.0/_._ +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.4.0/lib/netstandard1.1/System.Buffers.dll +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.4.0/lib/netstandard1.1/System.Buffers.xml +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.4.0/lib/netstandard2.0/System.Buffers.dll +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.4.0/lib/netstandard2.0/System.Buffers.xml +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.4.0/ref/netcoreapp2.0/_._ +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.4.0/ref/netstandard1.1/System.Buffers.dll +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.4.0/ref/netstandard1.1/System.Buffers.xml +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.4.0/ref/netstandard2.0/System.Buffers.dll +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.4.0/ref/netstandard2.0/System.Buffers.xml +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.4.0/system.buffers.4.4.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.4.0/system.buffers.4.4.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.4.0/system.buffers.nuspec +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.4.0/useSharedDesignerContext.txt +dotnet/sdk/NuGetFallbackFolder/system.buffers/4.4.0/version.txt +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/lib/netcore50/System.Collections.Concurrent.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/lib/netstandard1.3/System.Collections.Concurrent.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/lib/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netcore50/System.Collections.Concurrent.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netcore50/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netcore50/de/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netcore50/es/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netcore50/fr/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netcore50/it/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netcore50/ja/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netcore50/ko/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netcore50/ru/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netcore50/zh-hans/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netcore50/zh-hant/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netstandard1.1/System.Collections.Concurrent.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netstandard1.1/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netstandard1.1/de/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netstandard1.1/es/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netstandard1.1/fr/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netstandard1.1/it/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netstandard1.1/ja/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netstandard1.1/ko/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netstandard1.1/ru/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netstandard1.3/System.Collections.Concurrent.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netstandard1.3/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netstandard1.3/de/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netstandard1.3/es/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netstandard1.3/fr/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netstandard1.3/it/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netstandard1.3/ja/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netstandard1.3/ko/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netstandard1.3/ru/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/system.collections.concurrent.4.0.12.nupkg +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/system.collections.concurrent.4.0.12.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.0.12/system.collections.concurrent.nuspec +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/lib/netcore50/System.Collections.Concurrent.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/lib/netstandard1.3/System.Collections.Concurrent.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/lib/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netcore50/System.Collections.Concurrent.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netcore50/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netcore50/de/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netcore50/es/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netcore50/fr/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netcore50/it/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netcore50/ja/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netcore50/ko/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netcore50/ru/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netcore50/zh-hans/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netcore50/zh-hant/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netstandard1.1/System.Collections.Concurrent.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netstandard1.1/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netstandard1.1/de/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netstandard1.1/es/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netstandard1.1/fr/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netstandard1.1/it/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netstandard1.1/ja/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netstandard1.1/ko/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netstandard1.1/ru/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netstandard1.3/System.Collections.Concurrent.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netstandard1.3/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netstandard1.3/de/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netstandard1.3/es/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netstandard1.3/fr/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netstandard1.3/it/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netstandard1.3/ja/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netstandard1.3/ko/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netstandard1.3/ru/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/system.collections.concurrent.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/system.collections.concurrent.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.collections.concurrent/4.3.0/system.collections.concurrent.nuspec +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.2.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.2.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.2.0/lib/netstandard1.0/System.Collections.Immutable.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.2.0/lib/netstandard1.0/System.Collections.Immutable.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.2.0/lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.2.0/lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.2.0/system.collections.immutable.1.2.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.2.0/system.collections.immutable.1.2.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.2.0/system.collections.immutable.nuspec +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.3.0/lib/netstandard1.0/System.Collections.Immutable.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.3.0/lib/netstandard1.0/System.Collections.Immutable.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.3.0/lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.3.0/lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.3.0/system.collections.immutable.1.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.3.0/system.collections.immutable.1.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.3.0/system.collections.immutable.nuspec +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.3.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.3.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.3.1/lib/netstandard1.0/System.Collections.Immutable.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.3.1/lib/netstandard1.0/System.Collections.Immutable.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.3.1/lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.3.1/lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.3.1/system.collections.immutable.1.3.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.3.1/system.collections.immutable.1.3.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.3.1/system.collections.immutable.nuspec +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.4.0/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.4.0/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.4.0/lib/netcoreapp2.0/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.4.0/lib/netstandard1.0/System.Collections.Immutable.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.4.0/lib/netstandard1.0/System.Collections.Immutable.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.4.0/lib/netstandard2.0/System.Collections.Immutable.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.4.0/lib/netstandard2.0/System.Collections.Immutable.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.4.0/lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.4.0/lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.4.0/ref/netcoreapp2.0/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.4.0/system.collections.immutable.1.4.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.4.0/system.collections.immutable.1.4.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.4.0/system.collections.immutable.nuspec +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.4.0/useSharedDesignerContext.txt +dotnet/sdk/NuGetFallbackFolder/system.collections.immutable/1.4.0/version.txt +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/lib/net46/System.Collections.NonGeneric.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/lib/netstandard1.3/System.Collections.NonGeneric.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/ref/net46/System.Collections.NonGeneric.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/ref/netstandard1.3/System.Collections.NonGeneric.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/ref/netstandard1.3/System.Collections.NonGeneric.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/ref/netstandard1.3/de/System.Collections.NonGeneric.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/ref/netstandard1.3/es/System.Collections.NonGeneric.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/ref/netstandard1.3/fr/System.Collections.NonGeneric.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/ref/netstandard1.3/it/System.Collections.NonGeneric.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/ref/netstandard1.3/ja/System.Collections.NonGeneric.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/ref/netstandard1.3/ko/System.Collections.NonGeneric.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/ref/netstandard1.3/ru/System.Collections.NonGeneric.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/system.collections.nongeneric.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/system.collections.nongeneric.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.0.1/system.collections.nongeneric.nuspec +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/lib/net46/System.Collections.NonGeneric.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/lib/netstandard1.3/System.Collections.NonGeneric.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/ref/net46/System.Collections.NonGeneric.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/ref/netstandard1.3/System.Collections.NonGeneric.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/ref/netstandard1.3/System.Collections.NonGeneric.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/ref/netstandard1.3/de/System.Collections.NonGeneric.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/ref/netstandard1.3/es/System.Collections.NonGeneric.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/ref/netstandard1.3/fr/System.Collections.NonGeneric.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/ref/netstandard1.3/it/System.Collections.NonGeneric.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/ref/netstandard1.3/ja/System.Collections.NonGeneric.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/ref/netstandard1.3/ko/System.Collections.NonGeneric.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/ref/netstandard1.3/ru/System.Collections.NonGeneric.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/system.collections.nongeneric.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/system.collections.nongeneric.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.collections.nongeneric/4.3.0/system.collections.nongeneric.nuspec +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/lib/net46/System.Collections.Specialized.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/lib/netstandard1.3/System.Collections.Specialized.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/ref/net46/System.Collections.Specialized.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/ref/netstandard1.3/System.Collections.Specialized.dll +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/ref/netstandard1.3/System.Collections.Specialized.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/ref/netstandard1.3/de/System.Collections.Specialized.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/ref/netstandard1.3/es/System.Collections.Specialized.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/ref/netstandard1.3/fr/System.Collections.Specialized.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/ref/netstandard1.3/it/System.Collections.Specialized.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/ref/netstandard1.3/ja/System.Collections.Specialized.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/ref/netstandard1.3/ko/System.Collections.Specialized.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/ref/netstandard1.3/ru/System.Collections.Specialized.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/system.collections.specialized.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/system.collections.specialized.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.collections.specialized/4.3.0/system.collections.specialized.nuspec +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netcore50/System.Collections.dll +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netcore50/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netcore50/de/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netcore50/es/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netcore50/fr/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netcore50/it/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netcore50/ja/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netcore50/ko/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netcore50/ru/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netcore50/zh-hans/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netcore50/zh-hant/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netstandard1.0/System.Collections.dll +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netstandard1.0/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netstandard1.0/de/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netstandard1.0/es/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netstandard1.0/fr/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netstandard1.0/it/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netstandard1.0/ja/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netstandard1.0/ko/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netstandard1.0/ru/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netstandard1.0/zh-hans/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netstandard1.0/zh-hant/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netstandard1.3/System.Collections.dll +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netstandard1.3/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netstandard1.3/de/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netstandard1.3/es/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netstandard1.3/fr/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netstandard1.3/it/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netstandard1.3/ja/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netstandard1.3/ko/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netstandard1.3/ru/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netstandard1.3/zh-hans/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/netstandard1.3/zh-hant/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/system.collections.4.0.11.nupkg +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/system.collections.4.0.11.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.collections/4.0.11/system.collections.nuspec +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netcore50/System.Collections.dll +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netcore50/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netcore50/de/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netcore50/es/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netcore50/fr/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netcore50/it/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netcore50/ja/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netcore50/ko/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netcore50/ru/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netcore50/zh-hans/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netcore50/zh-hant/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netstandard1.0/System.Collections.dll +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netstandard1.0/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netstandard1.0/de/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netstandard1.0/es/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netstandard1.0/fr/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netstandard1.0/it/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netstandard1.0/ja/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netstandard1.0/ko/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netstandard1.0/ru/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netstandard1.0/zh-hans/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netstandard1.0/zh-hant/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netstandard1.3/System.Collections.dll +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netstandard1.3/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netstandard1.3/de/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netstandard1.3/es/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netstandard1.3/fr/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netstandard1.3/it/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netstandard1.3/ja/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netstandard1.3/ko/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netstandard1.3/ru/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netstandard1.3/zh-hans/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/netstandard1.3/zh-hant/System.Collections.xml +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/system.collections.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/system.collections.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.collections/4.3.0/system.collections.nuspec +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/lib/net461/System.ComponentModel.Annotations.dll +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/lib/netcore50/System.ComponentModel.Annotations.dll +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/lib/netcoreapp2.0/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/lib/netstandard1.4/System.ComponentModel.Annotations.dll +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/lib/netstandard2.0/System.ComponentModel.Annotations.dll +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/lib/portable-net45+win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/net461/System.ComponentModel.Annotations.dll +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/net461/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netcore50/System.ComponentModel.Annotations.dll +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netcore50/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netcore50/de/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netcore50/es/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netcore50/fr/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netcore50/it/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netcore50/ja/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netcore50/ko/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netcore50/ru/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netcoreapp2.0/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.1/System.ComponentModel.Annotations.dll +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.1/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.1/de/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.1/es/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.1/it/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.3/System.ComponentModel.Annotations.dll +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.3/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.3/de/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.3/es/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.3/it/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.4/System.ComponentModel.Annotations.dll +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.4/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.4/de/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.4/es/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.4/it/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard2.0/System.ComponentModel.Annotations.dll +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/netstandard2.0/System.ComponentModel.Annotations.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/portable-net45+win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/system.componentmodel.annotations.4.4.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/system.componentmodel.annotations.4.4.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/system.componentmodel.annotations.nuspec +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/useSharedDesignerContext.txt +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.annotations/4.4.0/version.txt +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/lib/net45/System.ComponentModel.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/lib/netstandard1.0/System.ComponentModel.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/ref/net45/System.ComponentModel.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/ref/netstandard1.0/System.ComponentModel.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/ref/netstandard1.0/System.ComponentModel.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/ref/netstandard1.0/de/System.ComponentModel.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/ref/netstandard1.0/es/System.ComponentModel.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/ref/netstandard1.0/it/System.ComponentModel.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/system.componentmodel.primitives.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/system.componentmodel.primitives.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.primitives/4.3.0/system.componentmodel.primitives.nuspec +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/lib/net45/System.ComponentModel.TypeConverter.dll +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/lib/net462/System.ComponentModel.TypeConverter.dll +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/lib/netstandard1.0/System.ComponentModel.TypeConverter.dll +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/lib/netstandard1.5/System.ComponentModel.TypeConverter.dll +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/net45/System.ComponentModel.TypeConverter.dll +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/net462/System.ComponentModel.TypeConverter.dll +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/netstandard1.0/System.ComponentModel.TypeConverter.dll +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/netstandard1.0/System.ComponentModel.TypeConverter.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/netstandard1.5/System.ComponentModel.TypeConverter.dll +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/netstandard1.5/System.ComponentModel.TypeConverter.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/system.componentmodel.typeconverter.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/system.componentmodel.typeconverter.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.componentmodel.typeconverter/4.3.0/system.componentmodel.typeconverter.nuspec +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/lib/netcore50/System.ComponentModel.dll +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/lib/netstandard1.3/System.ComponentModel.dll +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/netcore50/System.ComponentModel.dll +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/netcore50/System.ComponentModel.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/netcore50/de/System.ComponentModel.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/netcore50/es/System.ComponentModel.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/netcore50/fr/System.ComponentModel.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/netcore50/it/System.ComponentModel.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/netcore50/ja/System.ComponentModel.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/netcore50/ko/System.ComponentModel.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/netcore50/ru/System.ComponentModel.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/netcore50/zh-hans/System.ComponentModel.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/netcore50/zh-hant/System.ComponentModel.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/netstandard1.0/System.ComponentModel.dll +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/netstandard1.0/System.ComponentModel.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/netstandard1.0/de/System.ComponentModel.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/netstandard1.0/es/System.ComponentModel.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/netstandard1.0/fr/System.ComponentModel.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/netstandard1.0/it/System.ComponentModel.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/netstandard1.0/ja/System.ComponentModel.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/netstandard1.0/ko/System.ComponentModel.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/netstandard1.0/ru/System.ComponentModel.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/netstandard1.0/zh-hans/System.ComponentModel.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/netstandard1.0/zh-hant/System.ComponentModel.xml +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/system.componentmodel.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/system.componentmodel.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.componentmodel/4.3.0/system.componentmodel.nuspec +dotnet/sdk/NuGetFallbackFolder/system.composition.attributedmodel/1.0.31/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.composition.attributedmodel/1.0.31/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.composition.attributedmodel/1.0.31/lib/netstandard1.0/System.Composition.AttributedModel.dll +dotnet/sdk/NuGetFallbackFolder/system.composition.attributedmodel/1.0.31/lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.dll +dotnet/sdk/NuGetFallbackFolder/system.composition.attributedmodel/1.0.31/system.composition.attributedmodel.1.0.31.nupkg +dotnet/sdk/NuGetFallbackFolder/system.composition.attributedmodel/1.0.31/system.composition.attributedmodel.1.0.31.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.composition.attributedmodel/1.0.31/system.composition.attributedmodel.nuspec +dotnet/sdk/NuGetFallbackFolder/system.composition.convention/1.0.31/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.composition.convention/1.0.31/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.composition.convention/1.0.31/lib/netstandard1.0/System.Composition.Convention.dll +dotnet/sdk/NuGetFallbackFolder/system.composition.convention/1.0.31/lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.dll +dotnet/sdk/NuGetFallbackFolder/system.composition.convention/1.0.31/system.composition.convention.1.0.31.nupkg +dotnet/sdk/NuGetFallbackFolder/system.composition.convention/1.0.31/system.composition.convention.1.0.31.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.composition.convention/1.0.31/system.composition.convention.nuspec +dotnet/sdk/NuGetFallbackFolder/system.composition.hosting/1.0.31/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.composition.hosting/1.0.31/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.composition.hosting/1.0.31/lib/netstandard1.0/System.Composition.Hosting.dll +dotnet/sdk/NuGetFallbackFolder/system.composition.hosting/1.0.31/lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.dll +dotnet/sdk/NuGetFallbackFolder/system.composition.hosting/1.0.31/system.composition.hosting.1.0.31.nupkg +dotnet/sdk/NuGetFallbackFolder/system.composition.hosting/1.0.31/system.composition.hosting.1.0.31.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.composition.hosting/1.0.31/system.composition.hosting.nuspec +dotnet/sdk/NuGetFallbackFolder/system.composition.runtime/1.0.31/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.composition.runtime/1.0.31/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.composition.runtime/1.0.31/lib/netstandard1.0/System.Composition.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.composition.runtime/1.0.31/lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.composition.runtime/1.0.31/system.composition.runtime.1.0.31.nupkg +dotnet/sdk/NuGetFallbackFolder/system.composition.runtime/1.0.31/system.composition.runtime.1.0.31.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.composition.runtime/1.0.31/system.composition.runtime.nuspec +dotnet/sdk/NuGetFallbackFolder/system.composition.typedparts/1.0.31/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.composition.typedparts/1.0.31/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.composition.typedparts/1.0.31/lib/netstandard1.0/System.Composition.TypedParts.dll +dotnet/sdk/NuGetFallbackFolder/system.composition.typedparts/1.0.31/lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll +dotnet/sdk/NuGetFallbackFolder/system.composition.typedparts/1.0.31/system.composition.typedparts.1.0.31.nupkg +dotnet/sdk/NuGetFallbackFolder/system.composition.typedparts/1.0.31/system.composition.typedparts.1.0.31.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.composition.typedparts/1.0.31/system.composition.typedparts.nuspec +dotnet/sdk/NuGetFallbackFolder/system.composition/1.0.31/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.composition/1.0.31/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.composition/1.0.31/system.composition.1.0.31.nupkg +dotnet/sdk/NuGetFallbackFolder/system.composition/1.0.31/system.composition.1.0.31.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.composition/1.0.31/system.composition.nuspec +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/lib/net46/System.Console.dll +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/ref/net46/System.Console.dll +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/ref/netstandard1.3/System.Console.dll +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/ref/netstandard1.3/System.Console.xml +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/ref/netstandard1.3/de/System.Console.xml +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/ref/netstandard1.3/es/System.Console.xml +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/ref/netstandard1.3/fr/System.Console.xml +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/ref/netstandard1.3/it/System.Console.xml +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/ref/netstandard1.3/ja/System.Console.xml +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/ref/netstandard1.3/ko/System.Console.xml +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/ref/netstandard1.3/ru/System.Console.xml +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/ref/netstandard1.3/zh-hans/System.Console.xml +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/ref/netstandard1.3/zh-hant/System.Console.xml +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/system.console.4.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/system.console.4.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.console/4.0.0/system.console.nuspec +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/lib/net46/System.Console.dll +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/ref/net46/System.Console.dll +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/ref/netstandard1.3/System.Console.dll +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/ref/netstandard1.3/System.Console.xml +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/ref/netstandard1.3/de/System.Console.xml +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/ref/netstandard1.3/es/System.Console.xml +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/ref/netstandard1.3/fr/System.Console.xml +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/ref/netstandard1.3/it/System.Console.xml +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/ref/netstandard1.3/ja/System.Console.xml +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/ref/netstandard1.3/ko/System.Console.xml +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/ref/netstandard1.3/ru/System.Console.xml +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/ref/netstandard1.3/zh-hans/System.Console.xml +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/ref/netstandard1.3/zh-hant/System.Console.xml +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/system.console.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/system.console.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.console/4.3.0/system.console.nuspec +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/lib/net451/System.Data.SqlClient.dll +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/lib/net46/System.Data.SqlClient.dll +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/lib/net461/System.Data.SqlClient.dll +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/lib/netstandard1.2/System.Data.SqlClient.dll +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/lib/netstandard1.3/System.Data.SqlClient.dll +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/lib/netstandard2.0/System.Data.SqlClient.dll +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/net451/System.Data.SqlClient.dll +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/net46/System.Data.SqlClient.dll +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/net461/System.Data.SqlClient.dll +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/net461/System.Data.SqlClient.xml +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/netstandard1.2/System.Data.SqlClient.dll +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/netstandard1.2/System.Data.SqlClient.xml +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/netstandard1.2/de/System.Data.SqlClient.xml +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/netstandard1.2/es/System.Data.SqlClient.xml +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/netstandard1.2/fr/System.Data.SqlClient.xml +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/netstandard1.2/it/System.Data.SqlClient.xml +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/netstandard1.2/ja/System.Data.SqlClient.xml +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/netstandard1.2/ko/System.Data.SqlClient.xml +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/netstandard1.2/ru/System.Data.SqlClient.xml +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/netstandard1.3/System.Data.SqlClient.dll +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/netstandard1.3/System.Data.SqlClient.xml +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/netstandard1.3/de/System.Data.SqlClient.xml +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/netstandard1.3/es/System.Data.SqlClient.xml +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/netstandard1.3/fr/System.Data.SqlClient.xml +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/netstandard1.3/it/System.Data.SqlClient.xml +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/netstandard1.3/ja/System.Data.SqlClient.xml +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/netstandard1.3/ko/System.Data.SqlClient.xml +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/netstandard1.3/ru/System.Data.SqlClient.xml +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/netstandard2.0/System.Data.SqlClient.dll +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/netstandard2.0/System.Data.SqlClient.xml +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/runtimes/win/lib/net451/System.Data.SqlClient.dll +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/runtimes/win/lib/net46/System.Data.SqlClient.dll +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/runtimes/win/lib/net461/System.Data.SqlClient.dll +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/system.data.sqlclient.4.4.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/system.data.sqlclient.4.4.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/system.data.sqlclient.nuspec +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/useSharedDesignerContext.txt +dotnet/sdk/NuGetFallbackFolder/system.data.sqlclient/4.4.0/version.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/lib/netcore50/System.Diagnostics.Contracts.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/lib/netstandard1.0/System.Diagnostics.Contracts.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/netcore50/System.Diagnostics.Contracts.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/netcore50/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/netcore50/de/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/netcore50/es/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/netcore50/fr/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/netcore50/it/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/netcore50/ja/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/netcore50/ko/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/netcore50/ru/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/netcore50/zh-hans/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/netcore50/zh-hant/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/netstandard1.0/System.Diagnostics.Contracts.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/netstandard1.0/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/netstandard1.0/de/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/netstandard1.0/es/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/netstandard1.0/fr/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/netstandard1.0/it/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/netstandard1.0/ja/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/netstandard1.0/ko/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/netstandard1.0/ru/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/netstandard1.0/zh-hans/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/netstandard1.0/zh-hant/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/system.diagnostics.contracts.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/system.diagnostics.contracts.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.0.1/system.diagnostics.contracts.nuspec +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/lib/netcore50/System.Diagnostics.Contracts.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/lib/netstandard1.0/System.Diagnostics.Contracts.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/netcore50/System.Diagnostics.Contracts.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/netcore50/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/netcore50/de/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/netcore50/es/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/netcore50/fr/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/netcore50/it/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/netcore50/ja/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/netcore50/ko/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/netcore50/ru/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/netcore50/zh-hans/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/netcore50/zh-hant/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/netstandard1.0/System.Diagnostics.Contracts.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/netstandard1.0/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/netstandard1.0/de/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/netstandard1.0/es/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/netstandard1.0/fr/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/netstandard1.0/it/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/netstandard1.0/ja/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/netstandard1.0/ko/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/netstandard1.0/ru/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/netstandard1.0/zh-hans/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/netstandard1.0/zh-hant/System.Diagnostics.Contracts.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/system.diagnostics.contracts.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/system.diagnostics.contracts.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.contracts/4.3.0/system.diagnostics.contracts.nuspec +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netcore50/System.Diagnostics.Debug.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netcore50/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netcore50/de/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netcore50/es/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netcore50/fr/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netcore50/it/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netcore50/ja/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netcore50/ko/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netcore50/ru/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netcore50/zh-hans/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netcore50/zh-hant/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netstandard1.0/System.Diagnostics.Debug.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netstandard1.0/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netstandard1.0/de/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netstandard1.0/es/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netstandard1.0/fr/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netstandard1.0/it/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netstandard1.0/ja/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netstandard1.0/ko/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netstandard1.0/ru/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netstandard1.3/System.Diagnostics.Debug.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netstandard1.3/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netstandard1.3/de/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netstandard1.3/es/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netstandard1.3/fr/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netstandard1.3/it/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netstandard1.3/ja/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netstandard1.3/ko/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netstandard1.3/ru/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/system.diagnostics.debug.4.0.11.nupkg +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/system.diagnostics.debug.4.0.11.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.0.11/system.diagnostics.debug.nuspec +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netcore50/System.Diagnostics.Debug.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netcore50/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netcore50/de/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netcore50/es/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netcore50/fr/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netcore50/it/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netcore50/ja/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netcore50/ko/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netcore50/ru/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netcore50/zh-hans/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netcore50/zh-hant/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netstandard1.0/System.Diagnostics.Debug.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netstandard1.0/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netstandard1.0/de/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netstandard1.0/es/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netstandard1.0/fr/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netstandard1.0/it/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netstandard1.0/ja/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netstandard1.0/ko/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netstandard1.0/ru/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netstandard1.3/System.Diagnostics.Debug.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netstandard1.3/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netstandard1.3/de/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netstandard1.3/es/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netstandard1.3/fr/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netstandard1.3/it/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netstandard1.3/ja/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netstandard1.3/ko/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netstandard1.3/ru/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.debug/4.3.0/system.diagnostics.debug.nuspec +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.0.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.0.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.0.0/lib/net46/System.Diagnostics.DiagnosticSource.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.0.0/lib/net46/System.Diagnostics.DiagnosticSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.0.0/lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.0.0/lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.0.0/lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.0.0/lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.0.0/lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.0.0/lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.0.0/system.diagnostics.diagnosticsource.4.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.0.0/system.diagnostics.diagnosticsource.4.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.0.0/system.diagnostics.diagnosticsource.nuspec +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.3.0/lib/net46/System.Diagnostics.DiagnosticSource.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.3.0/lib/net46/System.Diagnostics.DiagnosticSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.3.0/lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.3.0/lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.3.0/lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.3.0/lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.3.0/lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.3.0/lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.3.0/system.diagnostics.diagnosticsource.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.3.0/system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.3.0/system.diagnostics.diagnosticsource.nuspec +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.0/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.0/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.0/lib/net45/System.Diagnostics.DiagnosticSource.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.0/lib/net45/System.Diagnostics.DiagnosticSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.0/lib/net46/System.Diagnostics.DiagnosticSource.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.0/lib/net46/System.Diagnostics.DiagnosticSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.0/lib/netcoreapp2.0/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.0/lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.0/lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.0/lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.0/lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.0/lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.0/lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.0/ref/netcoreapp2.0/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.0/system.diagnostics.diagnosticsource.4.4.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.0/system.diagnostics.diagnosticsource.4.4.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.0/system.diagnostics.diagnosticsource.nuspec +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.0/useSharedDesignerContext.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.0/version.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.1/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.1/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.1/lib/net45/System.Diagnostics.DiagnosticSource.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.1/lib/net45/System.Diagnostics.DiagnosticSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.1/lib/net46/System.Diagnostics.DiagnosticSource.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.1/lib/net46/System.Diagnostics.DiagnosticSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.1/lib/netcoreapp2.0/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.1/lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.1/lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.1/lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.1/lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.1/lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.1/lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.1/ref/netcoreapp2.0/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.1/system.diagnostics.diagnosticsource.4.4.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.1/system.diagnostics.diagnosticsource.4.4.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.1/system.diagnostics.diagnosticsource.nuspec +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.1/useSharedDesignerContext.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.diagnosticsource/4.4.1/version.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/lib/net46/System.Diagnostics.FileVersionInfo.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/ref/net46/System.Diagnostics.FileVersionInfo.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/ref/netstandard1.3/System.Diagnostics.FileVersionInfo.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/ref/netstandard1.3/System.Diagnostics.FileVersionInfo.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/ref/netstandard1.3/de/System.Diagnostics.FileVersionInfo.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/ref/netstandard1.3/es/System.Diagnostics.FileVersionInfo.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/ref/netstandard1.3/fr/System.Diagnostics.FileVersionInfo.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/ref/netstandard1.3/it/System.Diagnostics.FileVersionInfo.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/ref/netstandard1.3/ja/System.Diagnostics.FileVersionInfo.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/ref/netstandard1.3/ko/System.Diagnostics.FileVersionInfo.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/ref/netstandard1.3/ru/System.Diagnostics.FileVersionInfo.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/ref/netstandard1.3/zh-hans/System.Diagnostics.FileVersionInfo.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/ref/netstandard1.3/zh-hant/System.Diagnostics.FileVersionInfo.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/runtimes/win/lib/net46/System.Diagnostics.FileVersionInfo.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/runtimes/win/lib/netcore50/System.Diagnostics.FileVersionInfo.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/system.diagnostics.fileversioninfo.4.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/system.diagnostics.fileversioninfo.4.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.0.0/system.diagnostics.fileversioninfo.nuspec +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/lib/net46/System.Diagnostics.FileVersionInfo.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/ref/net46/System.Diagnostics.FileVersionInfo.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/ref/netstandard1.3/System.Diagnostics.FileVersionInfo.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/ref/netstandard1.3/System.Diagnostics.FileVersionInfo.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/ref/netstandard1.3/de/System.Diagnostics.FileVersionInfo.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/ref/netstandard1.3/es/System.Diagnostics.FileVersionInfo.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/ref/netstandard1.3/fr/System.Diagnostics.FileVersionInfo.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/ref/netstandard1.3/it/System.Diagnostics.FileVersionInfo.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/ref/netstandard1.3/ja/System.Diagnostics.FileVersionInfo.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/ref/netstandard1.3/ko/System.Diagnostics.FileVersionInfo.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/ref/netstandard1.3/ru/System.Diagnostics.FileVersionInfo.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/ref/netstandard1.3/zh-hans/System.Diagnostics.FileVersionInfo.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/ref/netstandard1.3/zh-hant/System.Diagnostics.FileVersionInfo.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/runtimes/win/lib/net46/System.Diagnostics.FileVersionInfo.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/runtimes/win/lib/netcore50/System.Diagnostics.FileVersionInfo.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/system.diagnostics.fileversioninfo.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.fileversioninfo/4.3.0/system.diagnostics.fileversioninfo.nuspec +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/lib/net46/System.Diagnostics.Process.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/lib/net461/System.Diagnostics.Process.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/net46/System.Diagnostics.Process.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/net461/System.Diagnostics.Process.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/netstandard1.3/System.Diagnostics.Process.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/netstandard1.3/System.Diagnostics.Process.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/netstandard1.3/de/System.Diagnostics.Process.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/netstandard1.3/es/System.Diagnostics.Process.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/netstandard1.3/fr/System.Diagnostics.Process.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/netstandard1.3/it/System.Diagnostics.Process.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/netstandard1.3/ja/System.Diagnostics.Process.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/netstandard1.3/ko/System.Diagnostics.Process.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/netstandard1.3/ru/System.Diagnostics.Process.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/netstandard1.3/zh-hans/System.Diagnostics.Process.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/netstandard1.3/zh-hant/System.Diagnostics.Process.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/netstandard1.4/System.Diagnostics.Process.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/netstandard1.4/System.Diagnostics.Process.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/netstandard1.4/de/System.Diagnostics.Process.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/netstandard1.4/es/System.Diagnostics.Process.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/netstandard1.4/fr/System.Diagnostics.Process.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/netstandard1.4/it/System.Diagnostics.Process.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/netstandard1.4/ja/System.Diagnostics.Process.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/netstandard1.4/ko/System.Diagnostics.Process.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/netstandard1.4/ru/System.Diagnostics.Process.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/netstandard1.4/zh-hans/System.Diagnostics.Process.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/netstandard1.4/zh-hant/System.Diagnostics.Process.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/runtimes/win/lib/net46/System.Diagnostics.Process.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/runtimes/win/lib/net461/System.Diagnostics.Process.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/runtimes/win7/lib/netcore50/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/system.diagnostics.process.4.1.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/system.diagnostics.process.4.1.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.process/4.1.0/system.diagnostics.process.nuspec +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/lib/net46/System.Diagnostics.StackTrace.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/lib/netstandard1.3/System.Diagnostics.StackTrace.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/ref/net46/System.Diagnostics.StackTrace.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/ref/netstandard1.3/System.Diagnostics.StackTrace.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/ref/netstandard1.3/System.Diagnostics.StackTrace.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/ref/netstandard1.3/de/System.Diagnostics.StackTrace.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/ref/netstandard1.3/es/System.Diagnostics.StackTrace.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/ref/netstandard1.3/fr/System.Diagnostics.StackTrace.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/ref/netstandard1.3/it/System.Diagnostics.StackTrace.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/ref/netstandard1.3/ja/System.Diagnostics.StackTrace.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/ref/netstandard1.3/ko/System.Diagnostics.StackTrace.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/ref/netstandard1.3/ru/System.Diagnostics.StackTrace.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/ref/netstandard1.3/zh-hans/System.Diagnostics.StackTrace.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/ref/netstandard1.3/zh-hant/System.Diagnostics.StackTrace.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/system.diagnostics.stacktrace.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/system.diagnostics.stacktrace.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.stacktrace/4.3.0/system.diagnostics.stacktrace.nuspec +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/netcore50/System.Diagnostics.Tools.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/netcore50/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/netcore50/de/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/netcore50/es/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/netcore50/fr/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/netcore50/it/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/netcore50/ja/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/netcore50/ko/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/netcore50/ru/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/netcore50/zh-hans/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/netcore50/zh-hant/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/netstandard1.0/System.Diagnostics.Tools.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/netstandard1.0/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/netstandard1.0/de/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/netstandard1.0/es/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/netstandard1.0/fr/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/netstandard1.0/it/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/netstandard1.0/ja/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/netstandard1.0/ko/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/netstandard1.0/ru/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/system.diagnostics.tools.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/system.diagnostics.tools.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.0.1/system.diagnostics.tools.nuspec +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/netcore50/System.Diagnostics.Tools.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/netcore50/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/netcore50/de/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/netcore50/es/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/netcore50/fr/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/netcore50/it/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/netcore50/ja/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/netcore50/ko/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/netcore50/ru/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/netcore50/zh-hans/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/netcore50/zh-hant/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/netstandard1.0/System.Diagnostics.Tools.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/netstandard1.0/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/netstandard1.0/de/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/netstandard1.0/es/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/netstandard1.0/fr/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/netstandard1.0/it/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/netstandard1.0/ja/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/netstandard1.0/ko/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/netstandard1.0/ru/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/system.diagnostics.tools.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/system.diagnostics.tools.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tools/4.3.0/system.diagnostics.tools.nuspec +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/lib/net46/System.Diagnostics.TraceSource.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/ref/net46/System.Diagnostics.TraceSource.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/ref/netstandard1.3/System.Diagnostics.TraceSource.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/ref/netstandard1.3/System.Diagnostics.TraceSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/system.diagnostics.tracesource.4.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/system.diagnostics.tracesource.4.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracesource/4.0.0/system.diagnostics.tracesource.nuspec +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/lib/net462/System.Diagnostics.Tracing.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/lib/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/net462/System.Diagnostics.Tracing.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netcore50/System.Diagnostics.Tracing.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netcore50/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netcore50/de/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netcore50/es/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netcore50/fr/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netcore50/it/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netcore50/ja/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netcore50/ko/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netcore50/ru/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.1/System.Diagnostics.Tracing.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.1/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.1/de/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.1/es/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.1/it/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.2/System.Diagnostics.Tracing.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.2/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.2/de/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.2/es/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.2/it/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.3/System.Diagnostics.Tracing.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.3/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.3/de/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.3/es/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.3/it/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.5/System.Diagnostics.Tracing.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.5/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.5/de/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.5/es/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.5/it/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/system.diagnostics.tracing.4.1.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/system.diagnostics.tracing.4.1.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.1.0/system.diagnostics.tracing.nuspec +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/lib/net462/System.Diagnostics.Tracing.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/lib/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/net462/System.Diagnostics.Tracing.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netcore50/System.Diagnostics.Tracing.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netcore50/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netcore50/de/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netcore50/es/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netcore50/fr/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netcore50/it/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netcore50/ja/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netcore50/ko/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netcore50/ru/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.1/System.Diagnostics.Tracing.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.1/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.1/de/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.1/es/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.1/it/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.2/System.Diagnostics.Tracing.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.2/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.2/de/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.2/es/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.2/it/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.3/System.Diagnostics.Tracing.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.3/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.3/de/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.3/es/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.3/it/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.5/System.Diagnostics.Tracing.dll +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.5/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.5/de/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.5/es/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.5/it/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/system.diagnostics.tracing.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/system.diagnostics.tracing.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.diagnostics.tracing/4.3.0/system.diagnostics.tracing.nuspec +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/lib/netcore50/System.Dynamic.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/lib/netstandard1.3/System.Dynamic.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netcore50/System.Dynamic.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netcore50/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netcore50/de/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netcore50/es/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netcore50/fr/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netcore50/it/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netcore50/ja/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netcore50/ko/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netcore50/ru/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netcore50/zh-hans/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netcore50/zh-hant/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netstandard1.0/System.Dynamic.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netstandard1.0/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netstandard1.0/de/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netstandard1.0/es/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netstandard1.0/fr/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netstandard1.0/it/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netstandard1.0/ja/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netstandard1.0/ko/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netstandard1.0/ru/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netstandard1.3/System.Dynamic.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netstandard1.3/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netstandard1.3/de/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netstandard1.3/es/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netstandard1.3/fr/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netstandard1.3/it/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netstandard1.3/ja/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netstandard1.3/ko/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netstandard1.3/ru/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/system.dynamic.runtime.4.0.11.nupkg +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/system.dynamic.runtime.4.0.11.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.0.11/system.dynamic.runtime.nuspec +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/lib/netcore50/System.Dynamic.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/lib/netstandard1.3/System.Dynamic.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netcore50/System.Dynamic.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netcore50/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netcore50/de/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netcore50/es/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netcore50/fr/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netcore50/it/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netcore50/ja/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netcore50/ko/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netcore50/ru/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netcore50/zh-hans/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netcore50/zh-hant/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netstandard1.0/System.Dynamic.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netstandard1.0/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netstandard1.0/de/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netstandard1.0/es/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netstandard1.0/fr/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netstandard1.0/it/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netstandard1.0/ja/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netstandard1.0/ko/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netstandard1.0/ru/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netstandard1.3/System.Dynamic.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netstandard1.3/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netstandard1.3/de/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netstandard1.3/es/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netstandard1.3/fr/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netstandard1.3/it/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netstandard1.3/ja/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netstandard1.3/ko/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netstandard1.3/ru/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/system.dynamic.runtime.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/system.dynamic.runtime.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.dynamic.runtime/4.3.0/system.dynamic.runtime.nuspec +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/lib/net46/System.Globalization.Calendars.dll +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/ref/net46/System.Globalization.Calendars.dll +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/ref/netstandard1.3/System.Globalization.Calendars.dll +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/ref/netstandard1.3/System.Globalization.Calendars.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/ref/netstandard1.3/de/System.Globalization.Calendars.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/ref/netstandard1.3/es/System.Globalization.Calendars.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/ref/netstandard1.3/fr/System.Globalization.Calendars.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/ref/netstandard1.3/it/System.Globalization.Calendars.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/ref/netstandard1.3/ja/System.Globalization.Calendars.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/ref/netstandard1.3/ko/System.Globalization.Calendars.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/ref/netstandard1.3/ru/System.Globalization.Calendars.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/system.globalization.calendars.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/system.globalization.calendars.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.0.1/system.globalization.calendars.nuspec +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/lib/net46/System.Globalization.Calendars.dll +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/ref/net46/System.Globalization.Calendars.dll +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/ref/netstandard1.3/System.Globalization.Calendars.dll +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/ref/netstandard1.3/System.Globalization.Calendars.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/ref/netstandard1.3/de/System.Globalization.Calendars.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/ref/netstandard1.3/es/System.Globalization.Calendars.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/ref/netstandard1.3/fr/System.Globalization.Calendars.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/ref/netstandard1.3/it/System.Globalization.Calendars.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/ref/netstandard1.3/ja/System.Globalization.Calendars.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/ref/netstandard1.3/ko/System.Globalization.Calendars.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/ref/netstandard1.3/ru/System.Globalization.Calendars.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/system.globalization.calendars.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/system.globalization.calendars.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.globalization.calendars/4.3.0/system.globalization.calendars.nuspec +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/lib/net46/System.Globalization.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/ref/net46/System.Globalization.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/ref/netstandard1.3/System.Globalization.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/ref/netstandard1.3/System.Globalization.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/ref/netstandard1.3/de/System.Globalization.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/ref/netstandard1.3/es/System.Globalization.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/ref/netstandard1.3/fr/System.Globalization.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/ref/netstandard1.3/it/System.Globalization.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/ref/netstandard1.3/ja/System.Globalization.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/ref/netstandard1.3/ko/System.Globalization.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/ref/netstandard1.3/ru/System.Globalization.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/runtimes/win/lib/net46/System.Globalization.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/system.globalization.extensions.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/system.globalization.extensions.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.0.1/system.globalization.extensions.nuspec +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/lib/net46/System.Globalization.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/ref/net46/System.Globalization.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/ref/netstandard1.3/System.Globalization.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/ref/netstandard1.3/System.Globalization.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/ref/netstandard1.3/de/System.Globalization.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/ref/netstandard1.3/es/System.Globalization.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/ref/netstandard1.3/fr/System.Globalization.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/ref/netstandard1.3/it/System.Globalization.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/ref/netstandard1.3/ja/System.Globalization.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/ref/netstandard1.3/ko/System.Globalization.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/ref/netstandard1.3/ru/System.Globalization.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/runtimes/win/lib/net46/System.Globalization.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/system.globalization.extensions.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/system.globalization.extensions.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.globalization.extensions/4.3.0/system.globalization.extensions.nuspec +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netcore50/System.Globalization.dll +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netcore50/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netcore50/de/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netcore50/es/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netcore50/fr/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netcore50/it/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netcore50/ja/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netcore50/ko/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netcore50/ru/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netcore50/zh-hans/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netcore50/zh-hant/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netstandard1.0/System.Globalization.dll +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netstandard1.0/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netstandard1.0/de/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netstandard1.0/es/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netstandard1.0/fr/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netstandard1.0/it/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netstandard1.0/ja/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netstandard1.0/ko/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netstandard1.0/ru/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netstandard1.0/zh-hans/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netstandard1.0/zh-hant/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netstandard1.3/System.Globalization.dll +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netstandard1.3/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netstandard1.3/de/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netstandard1.3/es/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netstandard1.3/fr/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netstandard1.3/it/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netstandard1.3/ja/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netstandard1.3/ko/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netstandard1.3/ru/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netstandard1.3/zh-hans/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/netstandard1.3/zh-hant/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/system.globalization.4.0.11.nupkg +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/system.globalization.4.0.11.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.0.11/system.globalization.nuspec +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netcore50/System.Globalization.dll +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netcore50/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netcore50/de/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netcore50/es/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netcore50/fr/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netcore50/it/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netcore50/ja/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netcore50/ko/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netcore50/ru/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netcore50/zh-hans/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netcore50/zh-hant/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netstandard1.0/System.Globalization.dll +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netstandard1.0/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netstandard1.0/de/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netstandard1.0/es/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netstandard1.0/fr/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netstandard1.0/it/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netstandard1.0/ja/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netstandard1.0/ko/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netstandard1.0/ru/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netstandard1.0/zh-hans/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netstandard1.0/zh-hant/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netstandard1.3/System.Globalization.dll +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netstandard1.3/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netstandard1.3/de/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netstandard1.3/es/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netstandard1.3/fr/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netstandard1.3/it/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netstandard1.3/ja/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netstandard1.3/ko/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netstandard1.3/ru/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netstandard1.3/zh-hans/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/netstandard1.3/zh-hant/System.Globalization.xml +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/system.globalization.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/system.globalization.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.globalization/4.3.0/system.globalization.nuspec +dotnet/sdk/NuGetFallbackFolder/system.identitymodel.tokens.jwt/5.1.4/lib/net45/System.IdentityModel.Tokens.Jwt.dll +dotnet/sdk/NuGetFallbackFolder/system.identitymodel.tokens.jwt/5.1.4/lib/net45/System.IdentityModel.Tokens.Jwt.xml +dotnet/sdk/NuGetFallbackFolder/system.identitymodel.tokens.jwt/5.1.4/lib/net451/System.IdentityModel.Tokens.Jwt.dll +dotnet/sdk/NuGetFallbackFolder/system.identitymodel.tokens.jwt/5.1.4/lib/net451/System.IdentityModel.Tokens.Jwt.xml +dotnet/sdk/NuGetFallbackFolder/system.identitymodel.tokens.jwt/5.1.4/lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll +dotnet/sdk/NuGetFallbackFolder/system.identitymodel.tokens.jwt/5.1.4/lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.xml +dotnet/sdk/NuGetFallbackFolder/system.identitymodel.tokens.jwt/5.1.4/system.identitymodel.tokens.jwt.5.1.4.nupkg +dotnet/sdk/NuGetFallbackFolder/system.identitymodel.tokens.jwt/5.1.4/system.identitymodel.tokens.jwt.5.1.4.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.identitymodel.tokens.jwt/5.1.4/system.identitymodel.tokens.jwt.nuspec +dotnet/sdk/NuGetFallbackFolder/system.interactive.async/3.1.1/lib/net45/System.Interactive.Async.dll +dotnet/sdk/NuGetFallbackFolder/system.interactive.async/3.1.1/lib/net45/System.Interactive.Async.xml +dotnet/sdk/NuGetFallbackFolder/system.interactive.async/3.1.1/lib/net46/System.Interactive.Async.dll +dotnet/sdk/NuGetFallbackFolder/system.interactive.async/3.1.1/lib/net46/System.Interactive.Async.xml +dotnet/sdk/NuGetFallbackFolder/system.interactive.async/3.1.1/lib/netstandard1.0/System.Interactive.Async.dll +dotnet/sdk/NuGetFallbackFolder/system.interactive.async/3.1.1/lib/netstandard1.0/System.Interactive.Async.xml +dotnet/sdk/NuGetFallbackFolder/system.interactive.async/3.1.1/lib/netstandard1.3/System.Interactive.Async.dll +dotnet/sdk/NuGetFallbackFolder/system.interactive.async/3.1.1/lib/netstandard1.3/System.Interactive.Async.xml +dotnet/sdk/NuGetFallbackFolder/system.interactive.async/3.1.1/system.interactive.async.3.1.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.interactive.async/3.1.1/system.interactive.async.3.1.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.interactive.async/3.1.1/system.interactive.async.nuspec +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/lib/net46/System.IO.Compression.ZipFile.dll +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/lib/netstandard1.3/System.IO.Compression.ZipFile.dll +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/ref/net46/System.IO.Compression.ZipFile.dll +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/ref/netstandard1.3/System.IO.Compression.ZipFile.dll +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/ref/netstandard1.3/System.IO.Compression.ZipFile.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/system.io.compression.zipfile.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/system.io.compression.zipfile.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.0.1/system.io.compression.zipfile.nuspec +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/lib/net46/System.IO.Compression.ZipFile.dll +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/lib/netstandard1.3/System.IO.Compression.ZipFile.dll +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/ref/net46/System.IO.Compression.ZipFile.dll +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/ref/netstandard1.3/System.IO.Compression.ZipFile.dll +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/ref/netstandard1.3/System.IO.Compression.ZipFile.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/system.io.compression.zipfile.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/system.io.compression.zipfile.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.io.compression.zipfile/4.3.0/system.io.compression.zipfile.nuspec +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/lib/net46/System.IO.Compression.dll +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/lib/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/net46/System.IO.Compression.dll +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netcore50/System.IO.Compression.dll +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netcore50/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netcore50/de/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netcore50/es/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netcore50/fr/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netcore50/it/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netcore50/ja/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netcore50/ko/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netcore50/ru/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netcore50/zh-hans/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netcore50/zh-hant/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netstandard1.1/System.IO.Compression.dll +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netstandard1.1/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netstandard1.1/de/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netstandard1.1/es/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netstandard1.1/fr/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netstandard1.1/it/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netstandard1.1/ja/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netstandard1.1/ko/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netstandard1.1/ru/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netstandard1.1/zh-hans/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netstandard1.1/zh-hant/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netstandard1.3/System.IO.Compression.dll +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netstandard1.3/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netstandard1.3/de/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netstandard1.3/es/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netstandard1.3/fr/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netstandard1.3/it/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netstandard1.3/ja/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netstandard1.3/ko/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netstandard1.3/ru/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netstandard1.3/zh-hans/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/netstandard1.3/zh-hant/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/runtimes/win/lib/net46/System.IO.Compression.dll +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/runtimes/win/lib/netstandard1.3/System.IO.Compression.dll +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/system.io.compression.4.1.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/system.io.compression.4.1.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.1.0/system.io.compression.nuspec +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/lib/net46/System.IO.Compression.dll +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/lib/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/net46/System.IO.Compression.dll +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netcore50/System.IO.Compression.dll +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netcore50/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netcore50/de/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netcore50/es/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netcore50/fr/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netcore50/it/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netcore50/ja/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netcore50/ko/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netcore50/ru/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netcore50/zh-hans/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netcore50/zh-hant/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netstandard1.1/System.IO.Compression.dll +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netstandard1.1/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netstandard1.1/de/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netstandard1.1/es/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netstandard1.1/fr/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netstandard1.1/it/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netstandard1.1/ja/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netstandard1.1/ko/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netstandard1.1/ru/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netstandard1.1/zh-hans/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netstandard1.1/zh-hant/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netstandard1.3/System.IO.Compression.dll +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netstandard1.3/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netstandard1.3/de/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netstandard1.3/es/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netstandard1.3/fr/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netstandard1.3/it/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netstandard1.3/ja/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netstandard1.3/ko/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netstandard1.3/ru/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netstandard1.3/zh-hans/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/netstandard1.3/zh-hant/System.IO.Compression.xml +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/runtimes/win/lib/net46/System.IO.Compression.dll +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/runtimes/win/lib/netstandard1.3/System.IO.Compression.dll +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/system.io.compression.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/system.io.compression.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.io.compression/4.3.0/system.io.compression.nuspec +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/lib/net46/System.IO.FileSystem.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/lib/netstandard1.3/System.IO.FileSystem.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/ref/net46/System.IO.FileSystem.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/ref/netstandard1.3/System.IO.FileSystem.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/ref/netstandard1.3/System.IO.FileSystem.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/system.io.filesystem.primitives.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/system.io.filesystem.primitives.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.0.1/system.io.filesystem.primitives.nuspec +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/lib/net46/System.IO.FileSystem.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/lib/netstandard1.3/System.IO.FileSystem.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/ref/net46/System.IO.FileSystem.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/ref/netstandard1.3/System.IO.FileSystem.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/ref/netstandard1.3/System.IO.FileSystem.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/system.io.filesystem.primitives.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/system.io.filesystem.primitives.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem.primitives/4.3.0/system.io.filesystem.primitives.nuspec +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/lib/net46/System.IO.FileSystem.dll +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/ref/net46/System.IO.FileSystem.dll +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/ref/netstandard1.3/System.IO.FileSystem.dll +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/ref/netstandard1.3/System.IO.FileSystem.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/ref/netstandard1.3/de/System.IO.FileSystem.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/ref/netstandard1.3/es/System.IO.FileSystem.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/ref/netstandard1.3/fr/System.IO.FileSystem.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/ref/netstandard1.3/it/System.IO.FileSystem.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/ref/netstandard1.3/ja/System.IO.FileSystem.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/ref/netstandard1.3/ko/System.IO.FileSystem.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/ref/netstandard1.3/ru/System.IO.FileSystem.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/system.io.filesystem.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/system.io.filesystem.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.0.1/system.io.filesystem.nuspec +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/lib/net46/System.IO.FileSystem.dll +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/ref/net46/System.IO.FileSystem.dll +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/ref/netstandard1.3/System.IO.FileSystem.dll +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/ref/netstandard1.3/System.IO.FileSystem.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/ref/netstandard1.3/de/System.IO.FileSystem.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/ref/netstandard1.3/es/System.IO.FileSystem.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/ref/netstandard1.3/fr/System.IO.FileSystem.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/ref/netstandard1.3/it/System.IO.FileSystem.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/ref/netstandard1.3/ja/System.IO.FileSystem.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/ref/netstandard1.3/ko/System.IO.FileSystem.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/ref/netstandard1.3/ru/System.IO.FileSystem.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/system.io.filesystem.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/system.io.filesystem.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.io.filesystem/4.3.0/system.io.filesystem.nuspec +dotnet/sdk/NuGetFallbackFolder/system.io.pipes/4.0.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.io.pipes/4.0.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.io.pipes/4.0.0/lib/net46/System.IO.Pipes.dll +dotnet/sdk/NuGetFallbackFolder/system.io.pipes/4.0.0/ref/net46/System.IO.Pipes.dll +dotnet/sdk/NuGetFallbackFolder/system.io.pipes/4.0.0/ref/netstandard1.3/System.IO.Pipes.dll +dotnet/sdk/NuGetFallbackFolder/system.io.pipes/4.0.0/ref/netstandard1.3/System.IO.Pipes.xml +dotnet/sdk/NuGetFallbackFolder/system.io.pipes/4.0.0/ref/netstandard1.3/de/System.IO.Pipes.xml +dotnet/sdk/NuGetFallbackFolder/system.io.pipes/4.0.0/ref/netstandard1.3/es/System.IO.Pipes.xml +dotnet/sdk/NuGetFallbackFolder/system.io.pipes/4.0.0/ref/netstandard1.3/fr/System.IO.Pipes.xml +dotnet/sdk/NuGetFallbackFolder/system.io.pipes/4.0.0/ref/netstandard1.3/it/System.IO.Pipes.xml +dotnet/sdk/NuGetFallbackFolder/system.io.pipes/4.0.0/ref/netstandard1.3/ja/System.IO.Pipes.xml +dotnet/sdk/NuGetFallbackFolder/system.io.pipes/4.0.0/ref/netstandard1.3/ko/System.IO.Pipes.xml +dotnet/sdk/NuGetFallbackFolder/system.io.pipes/4.0.0/ref/netstandard1.3/ru/System.IO.Pipes.xml +dotnet/sdk/NuGetFallbackFolder/system.io.pipes/4.0.0/ref/netstandard1.3/zh-hans/System.IO.Pipes.xml +dotnet/sdk/NuGetFallbackFolder/system.io.pipes/4.0.0/ref/netstandard1.3/zh-hant/System.IO.Pipes.xml +dotnet/sdk/NuGetFallbackFolder/system.io.pipes/4.0.0/runtimes/unix/lib/netstandard1.3/System.IO.Pipes.dll +dotnet/sdk/NuGetFallbackFolder/system.io.pipes/4.0.0/runtimes/win/lib/net46/System.IO.Pipes.dll +dotnet/sdk/NuGetFallbackFolder/system.io.pipes/4.0.0/runtimes/win/lib/netstandard1.3/System.IO.Pipes.dll +dotnet/sdk/NuGetFallbackFolder/system.io.pipes/4.0.0/runtimes/win7/lib/netcore50/_._ +dotnet/sdk/NuGetFallbackFolder/system.io.pipes/4.0.0/system.io.pipes.4.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.io.pipes/4.0.0/system.io.pipes.4.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.io.pipes/4.0.0/system.io.pipes.nuspec +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/lib/net462/System.IO.dll +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/net462/System.IO.dll +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netcore50/System.IO.dll +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netcore50/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netcore50/de/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netcore50/es/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netcore50/fr/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netcore50/it/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netcore50/ja/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netcore50/ko/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netcore50/ru/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netcore50/zh-hans/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netcore50/zh-hant/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.0/System.IO.dll +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.0/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.0/de/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.0/es/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.0/fr/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.0/it/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.0/ja/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.0/ko/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.0/ru/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.0/zh-hans/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.0/zh-hant/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.3/System.IO.dll +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.3/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.3/de/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.3/es/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.3/fr/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.3/it/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.3/ja/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.3/ko/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.3/ru/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.3/zh-hans/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.3/zh-hant/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.5/System.IO.dll +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.5/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.5/de/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.5/es/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.5/fr/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.5/it/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.5/ja/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.5/ko/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.5/ru/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.5/zh-hans/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/netstandard1.5/zh-hant/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/system.io.4.1.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/system.io.4.1.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.io/4.1.0/system.io.nuspec +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/lib/net462/System.IO.dll +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/net462/System.IO.dll +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netcore50/System.IO.dll +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netcore50/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netcore50/de/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netcore50/es/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netcore50/fr/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netcore50/it/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netcore50/ja/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netcore50/ko/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netcore50/ru/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netcore50/zh-hans/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netcore50/zh-hant/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.0/System.IO.dll +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.0/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.0/de/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.0/es/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.0/fr/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.0/it/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.0/ja/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.0/ko/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.0/ru/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.0/zh-hans/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.0/zh-hant/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.3/System.IO.dll +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.3/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.3/de/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.3/es/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.3/fr/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.3/it/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.3/ja/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.3/ko/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.3/ru/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.3/zh-hans/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.3/zh-hant/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.5/System.IO.dll +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.5/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.5/de/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.5/es/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.5/fr/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.5/it/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.5/ja/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.5/ko/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.5/ru/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.5/zh-hans/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/netstandard1.5/zh-hant/System.IO.xml +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/system.io.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/system.io.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.io/4.3.0/system.io.nuspec +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/lib/net463/System.Linq.Expressions.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/lib/netcore50/System.Linq.Expressions.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/lib/netstandard1.6/System.Linq.Expressions.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/net463/System.Linq.Expressions.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netcore50/System.Linq.Expressions.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netcore50/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netcore50/de/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netcore50/es/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netcore50/fr/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netcore50/it/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netcore50/ja/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netcore50/ko/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netcore50/ru/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netcore50/zh-hans/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netcore50/zh-hant/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.0/System.Linq.Expressions.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.0/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.0/de/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.0/es/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.0/fr/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.0/it/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.0/ja/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.0/ko/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.0/ru/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.3/System.Linq.Expressions.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.3/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.3/de/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.3/es/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.3/fr/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.3/it/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.3/ja/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.3/ko/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.3/ru/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.6/System.Linq.Expressions.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.6/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.6/de/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.6/es/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.6/fr/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.6/it/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.6/ja/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.6/ko/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.6/ru/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/runtimes/aot/lib/netcore50/System.Linq.Expressions.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/system.linq.expressions.4.1.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/system.linq.expressions.4.1.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.1.0/system.linq.expressions.nuspec +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/lib/net463/System.Linq.Expressions.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/lib/netcore50/System.Linq.Expressions.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/lib/netstandard1.6/System.Linq.Expressions.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/net463/System.Linq.Expressions.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netcore50/System.Linq.Expressions.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netcore50/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netcore50/de/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netcore50/es/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netcore50/fr/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netcore50/it/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netcore50/ja/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netcore50/ko/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netcore50/ru/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netcore50/zh-hans/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netcore50/zh-hant/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.0/System.Linq.Expressions.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.0/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.0/de/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.0/es/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.0/fr/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.0/it/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.0/ja/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.0/ko/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.0/ru/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.3/System.Linq.Expressions.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.3/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.3/de/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.3/es/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.3/fr/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.3/it/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.3/ja/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.3/ko/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.3/ru/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.6/System.Linq.Expressions.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.6/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.6/de/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.6/es/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.6/fr/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.6/it/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.6/ja/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.6/ko/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.6/ru/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/runtimes/aot/lib/netcore50/System.Linq.Expressions.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/system.linq.expressions.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/system.linq.expressions.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.linq.expressions/4.3.0/system.linq.expressions.nuspec +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/lib/netcore50/System.Linq.Parallel.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/lib/netstandard1.3/System.Linq.Parallel.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/lib/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/netcore50/System.Linq.Parallel.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/netcore50/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/netcore50/de/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/netcore50/es/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/netcore50/fr/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/netcore50/it/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/netcore50/ja/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/netcore50/ko/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/netcore50/ru/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/netcore50/zh-hans/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/netcore50/zh-hant/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/netstandard1.1/System.Linq.Parallel.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/netstandard1.1/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/netstandard1.1/de/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/netstandard1.1/es/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/netstandard1.1/fr/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/netstandard1.1/it/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/netstandard1.1/ja/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/netstandard1.1/ko/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/netstandard1.1/ru/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/netstandard1.1/zh-hans/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/netstandard1.1/zh-hant/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/system.linq.parallel.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/system.linq.parallel.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.0.1/system.linq.parallel.nuspec +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/lib/netcore50/System.Linq.Parallel.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/lib/netstandard1.3/System.Linq.Parallel.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/lib/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/netcore50/System.Linq.Parallel.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/netcore50/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/netcore50/de/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/netcore50/es/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/netcore50/fr/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/netcore50/it/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/netcore50/ja/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/netcore50/ko/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/netcore50/ru/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/netcore50/zh-hans/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/netcore50/zh-hant/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/netstandard1.1/System.Linq.Parallel.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/netstandard1.1/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/netstandard1.1/de/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/netstandard1.1/es/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/netstandard1.1/fr/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/netstandard1.1/it/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/netstandard1.1/ja/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/netstandard1.1/ko/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/netstandard1.1/ru/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/netstandard1.1/zh-hans/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/netstandard1.1/zh-hant/System.Linq.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/system.linq.parallel.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/system.linq.parallel.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.linq.parallel/4.3.0/system.linq.parallel.nuspec +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/lib/monoandroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/lib/monotouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/lib/netcore50/System.Linq.Queryable.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/lib/netstandard1.3/System.Linq.Queryable.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/monoandroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/monotouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/netcore50/System.Linq.Queryable.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/netcore50/System.Linq.Queryable.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/netcore50/de/System.Linq.Queryable.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/netcore50/es/System.Linq.Queryable.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/netcore50/fr/System.Linq.Queryable.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/netcore50/it/System.Linq.Queryable.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/netcore50/ja/System.Linq.Queryable.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/netcore50/ko/System.Linq.Queryable.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/netcore50/ru/System.Linq.Queryable.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/netcore50/zh-hans/System.Linq.Queryable.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/netcore50/zh-hant/System.Linq.Queryable.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/netstandard1.0/System.Linq.Queryable.dll +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/netstandard1.0/System.Linq.Queryable.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/netstandard1.0/de/System.Linq.Queryable.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/netstandard1.0/es/System.Linq.Queryable.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/netstandard1.0/fr/System.Linq.Queryable.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/netstandard1.0/it/System.Linq.Queryable.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/netstandard1.0/ja/System.Linq.Queryable.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/netstandard1.0/ko/System.Linq.Queryable.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/netstandard1.0/ru/System.Linq.Queryable.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/system.linq.queryable.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/system.linq.queryable.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.linq.queryable/4.0.1/system.linq.queryable.nuspec +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/lib/net463/System.Linq.dll +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/lib/netcore50/System.Linq.dll +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/lib/netstandard1.6/System.Linq.dll +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/net463/System.Linq.dll +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netcore50/System.Linq.dll +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netcore50/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netcore50/de/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netcore50/es/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netcore50/fr/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netcore50/it/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netcore50/ja/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netcore50/ko/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netcore50/ru/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netcore50/zh-hans/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netcore50/zh-hant/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netstandard1.0/System.Linq.dll +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netstandard1.0/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netstandard1.0/de/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netstandard1.0/es/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netstandard1.0/fr/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netstandard1.0/it/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netstandard1.0/ja/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netstandard1.0/ko/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netstandard1.0/ru/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netstandard1.0/zh-hans/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netstandard1.0/zh-hant/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netstandard1.6/System.Linq.dll +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netstandard1.6/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netstandard1.6/de/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netstandard1.6/es/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netstandard1.6/fr/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netstandard1.6/it/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netstandard1.6/ja/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netstandard1.6/ko/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netstandard1.6/ru/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netstandard1.6/zh-hans/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/netstandard1.6/zh-hant/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/system.linq.4.1.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/system.linq.4.1.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.linq/4.1.0/system.linq.nuspec +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/lib/net463/System.Linq.dll +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/lib/netcore50/System.Linq.dll +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/lib/netstandard1.6/System.Linq.dll +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/net463/System.Linq.dll +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netcore50/System.Linq.dll +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netcore50/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netcore50/de/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netcore50/es/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netcore50/fr/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netcore50/it/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netcore50/ja/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netcore50/ko/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netcore50/ru/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netcore50/zh-hans/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netcore50/zh-hant/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netstandard1.0/System.Linq.dll +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netstandard1.0/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netstandard1.0/de/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netstandard1.0/es/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netstandard1.0/fr/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netstandard1.0/it/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netstandard1.0/ja/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netstandard1.0/ko/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netstandard1.0/ru/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netstandard1.0/zh-hans/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netstandard1.0/zh-hant/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netstandard1.6/System.Linq.dll +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netstandard1.6/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netstandard1.6/de/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netstandard1.6/es/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netstandard1.6/fr/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netstandard1.6/it/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netstandard1.6/ja/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netstandard1.6/ko/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netstandard1.6/ru/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netstandard1.6/zh-hans/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/netstandard1.6/zh-hant/System.Linq.xml +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/system.linq.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/system.linq.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.linq/4.3.0/system.linq.nuspec +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/lib/Xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/lib/monoandroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/lib/monotouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/lib/net46/System.Net.Http.dll +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/lib/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/Xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/monoandroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/monotouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/net46/System.Net.Http.dll +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/net46/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/net46/de/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/net46/es/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/net46/fr/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/net46/it/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/net46/ja/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/net46/ko/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/net46/ru/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/net46/zh-hans/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/net46/zh-hant/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netcore50/System.Net.Http.dll +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netcore50/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netcore50/de/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netcore50/es/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netcore50/fr/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netcore50/it/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netcore50/ja/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netcore50/ko/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netcore50/ru/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netcore50/zh-hans/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netcore50/zh-hant/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netstandard1.1/System.Net.Http.dll +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netstandard1.1/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netstandard1.1/de/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netstandard1.1/es/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netstandard1.1/fr/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netstandard1.1/it/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netstandard1.1/ja/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netstandard1.1/ko/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netstandard1.1/ru/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netstandard1.1/zh-hans/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netstandard1.1/zh-hant/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netstandard1.3/System.Net.Http.dll +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netstandard1.3/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netstandard1.3/de/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netstandard1.3/es/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netstandard1.3/fr/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netstandard1.3/it/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netstandard1.3/ja/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netstandard1.3/ko/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netstandard1.3/ru/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netstandard1.3/zh-hans/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/netstandard1.3/zh-hant/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/runtimes/unix/lib/netstandard1.6/System.Net.Http.dll +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/runtimes/win/lib/net46/System.Net.Http.dll +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/runtimes/win/lib/netcore50/System.Net.Http.dll +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/runtimes/win/lib/netstandard1.3/System.Net.Http.dll +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/system.net.http.4.1.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/system.net.http.4.1.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.1.0/system.net.http.nuspec +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/lib/Xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/lib/monoandroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/lib/monotouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/lib/net46/System.Net.Http.dll +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/lib/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/Xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/monoandroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/monotouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/net46/System.Net.Http.dll +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/net46/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/net46/de/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/net46/es/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/net46/fr/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/net46/it/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/net46/ja/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/net46/ko/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/net46/ru/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/net46/zh-hans/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/net46/zh-hant/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netcore50/System.Net.Http.dll +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netcore50/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netcore50/de/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netcore50/es/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netcore50/fr/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netcore50/it/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netcore50/ja/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netcore50/ko/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netcore50/ru/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netcore50/zh-hans/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netcore50/zh-hant/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netstandard1.1/System.Net.Http.dll +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netstandard1.1/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netstandard1.1/de/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netstandard1.1/es/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netstandard1.1/fr/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netstandard1.1/it/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netstandard1.1/ja/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netstandard1.1/ko/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netstandard1.1/ru/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netstandard1.1/zh-hans/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netstandard1.1/zh-hant/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netstandard1.3/System.Net.Http.dll +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netstandard1.3/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netstandard1.3/de/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netstandard1.3/es/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netstandard1.3/fr/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netstandard1.3/it/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netstandard1.3/ja/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netstandard1.3/ko/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netstandard1.3/ru/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netstandard1.3/zh-hans/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/netstandard1.3/zh-hant/System.Net.Http.xml +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/runtimes/unix/lib/netstandard1.6/System.Net.Http.dll +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/runtimes/win/lib/net46/System.Net.Http.dll +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/runtimes/win/lib/netcore50/System.Net.Http.dll +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/runtimes/win/lib/netstandard1.3/System.Net.Http.dll +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/system.net.http.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/system.net.http.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.net.http/4.3.0/system.net.http.nuspec +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/lib/net46/System.Net.NameResolution.dll +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/ref/net46/System.Net.NameResolution.dll +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/ref/netstandard1.3/System.Net.NameResolution.dll +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/ref/netstandard1.3/System.Net.NameResolution.xml +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/ref/netstandard1.3/de/System.Net.NameResolution.xml +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/ref/netstandard1.3/es/System.Net.NameResolution.xml +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/ref/netstandard1.3/fr/System.Net.NameResolution.xml +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/ref/netstandard1.3/it/System.Net.NameResolution.xml +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/ref/netstandard1.3/ja/System.Net.NameResolution.xml +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/ref/netstandard1.3/ko/System.Net.NameResolution.xml +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/ref/netstandard1.3/ru/System.Net.NameResolution.xml +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/runtimes/win/lib/net46/System.Net.NameResolution.dll +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/runtimes/win/lib/netcore50/System.Net.NameResolution.dll +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/system.net.nameresolution.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/system.net.nameresolution.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.net.nameresolution/4.3.0/system.net.nameresolution.nuspec +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netcore50/System.Net.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netcore50/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netcore50/de/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netcore50/es/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netcore50/fr/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netcore50/it/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netcore50/ja/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netcore50/ko/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netcore50/ru/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netcore50/zh-hans/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netcore50/zh-hant/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.0/System.Net.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.0/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.0/de/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.0/es/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.0/fr/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.0/it/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.0/ja/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.0/ko/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.0/ru/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.0/zh-hans/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.0/zh-hant/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.1/System.Net.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.1/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.1/de/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.1/es/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.1/fr/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.1/it/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.1/ja/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.1/ko/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.1/ru/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.1/zh-hans/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.1/zh-hant/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.3/System.Net.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.3/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.3/de/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.3/es/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.3/fr/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.3/it/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.3/ja/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.3/ko/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.3/ru/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.3/zh-hans/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/netstandard1.3/zh-hant/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/system.net.primitives.4.0.11.nupkg +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/system.net.primitives.4.0.11.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.0.11/system.net.primitives.nuspec +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netcore50/System.Net.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netcore50/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netcore50/de/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netcore50/es/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netcore50/fr/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netcore50/it/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netcore50/ja/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netcore50/ko/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netcore50/ru/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netcore50/zh-hans/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netcore50/zh-hant/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.0/System.Net.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.0/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.0/de/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.0/es/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.0/fr/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.0/it/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.0/ja/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.0/ko/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.0/ru/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.0/zh-hans/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.0/zh-hant/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.1/System.Net.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.1/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.1/de/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.1/es/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.1/fr/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.1/it/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.1/ja/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.1/ko/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.1/ru/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.1/zh-hans/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.1/zh-hant/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.3/System.Net.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.3/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.3/de/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.3/es/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.3/fr/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.3/it/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.3/ja/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.3/ko/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.3/ru/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.3/zh-hans/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/netstandard1.3/zh-hant/System.Net.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/system.net.primitives.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/system.net.primitives.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.net.primitives/4.3.0/system.net.primitives.nuspec +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/lib/net46/System.Net.Security.dll +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/ref/net46/System.Net.Security.dll +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/ref/netstandard1.3/System.Net.Security.dll +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/ref/netstandard1.3/System.Net.Security.xml +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/ref/netstandard1.3/de/System.Net.Security.xml +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/ref/netstandard1.3/es/System.Net.Security.xml +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/ref/netstandard1.3/fr/System.Net.Security.xml +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/ref/netstandard1.3/it/System.Net.Security.xml +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/ref/netstandard1.3/ja/System.Net.Security.xml +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/ref/netstandard1.3/ko/System.Net.Security.xml +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/ref/netstandard1.3/ru/System.Net.Security.xml +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/ref/netstandard1.3/zh-hans/System.Net.Security.xml +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/ref/netstandard1.3/zh-hant/System.Net.Security.xml +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/runtimes/unix/lib/netstandard1.6/System.Net.Security.dll +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/runtimes/win/lib/net46/System.Net.Security.dll +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/runtimes/win/lib/netstandard1.3/System.Net.Security.dll +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/runtimes/win7/lib/netcore50/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/system.net.security.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/system.net.security.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.net.security/4.3.0/system.net.security.nuspec +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/lib/net46/System.Net.Sockets.dll +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/ref/net46/System.Net.Sockets.dll +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/ref/netstandard1.3/System.Net.Sockets.dll +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/ref/netstandard1.3/System.Net.Sockets.xml +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/ref/netstandard1.3/de/System.Net.Sockets.xml +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/ref/netstandard1.3/es/System.Net.Sockets.xml +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/ref/netstandard1.3/fr/System.Net.Sockets.xml +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/ref/netstandard1.3/it/System.Net.Sockets.xml +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/ref/netstandard1.3/ja/System.Net.Sockets.xml +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/ref/netstandard1.3/ko/System.Net.Sockets.xml +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/ref/netstandard1.3/ru/System.Net.Sockets.xml +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/ref/netstandard1.3/zh-hans/System.Net.Sockets.xml +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/ref/netstandard1.3/zh-hant/System.Net.Sockets.xml +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/system.net.sockets.4.1.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/system.net.sockets.4.1.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.1.0/system.net.sockets.nuspec +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/lib/net46/System.Net.Sockets.dll +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/ref/net46/System.Net.Sockets.dll +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/ref/netstandard1.3/System.Net.Sockets.dll +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/ref/netstandard1.3/System.Net.Sockets.xml +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/ref/netstandard1.3/de/System.Net.Sockets.xml +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/ref/netstandard1.3/es/System.Net.Sockets.xml +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/ref/netstandard1.3/fr/System.Net.Sockets.xml +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/ref/netstandard1.3/it/System.Net.Sockets.xml +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/ref/netstandard1.3/ja/System.Net.Sockets.xml +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/ref/netstandard1.3/ko/System.Net.Sockets.xml +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/ref/netstandard1.3/ru/System.Net.Sockets.xml +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/ref/netstandard1.3/zh-hans/System.Net.Sockets.xml +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/ref/netstandard1.3/zh-hant/System.Net.Sockets.xml +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/system.net.sockets.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/system.net.sockets.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.net.sockets/4.3.0/system.net.sockets.nuspec +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/lib/net46/System.Numerics.Vectors.dll +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/lib/net46/System.Numerics.Vectors.xml +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/lib/netcoreapp2.0/_._ +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/lib/netstandard1.0/System.Numerics.Vectors.dll +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/lib/netstandard1.0/System.Numerics.Vectors.xml +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/lib/netstandard2.0/System.Numerics.Vectors.dll +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/lib/netstandard2.0/System.Numerics.Vectors.xml +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/ref/net46/System.Numerics.Vectors.dll +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/ref/net46/System.Numerics.Vectors.xml +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/ref/netcoreapp2.0/_._ +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/ref/netstandard1.0/System.Numerics.Vectors.dll +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/ref/netstandard1.0/System.Numerics.Vectors.xml +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/ref/netstandard2.0/System.Numerics.Vectors.dll +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/ref/netstandard2.0/System.Numerics.Vectors.xml +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/system.numerics.vectors.4.4.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/system.numerics.vectors.4.4.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/system.numerics.vectors.nuspec +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/useSharedDesignerContext.txt +dotnet/sdk/NuGetFallbackFolder/system.numerics.vectors/4.4.0/version.txt +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/lib/netcore50/System.ObjectModel.dll +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/lib/netstandard1.3/System.ObjectModel.dll +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netcore50/System.ObjectModel.dll +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netcore50/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netcore50/de/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netcore50/es/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netcore50/fr/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netcore50/it/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netcore50/ja/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netcore50/ko/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netcore50/ru/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netcore50/zh-hans/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netcore50/zh-hant/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netstandard1.0/System.ObjectModel.dll +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netstandard1.0/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netstandard1.0/de/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netstandard1.0/es/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netstandard1.0/fr/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netstandard1.0/it/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netstandard1.0/ja/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netstandard1.0/ko/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netstandard1.0/ru/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netstandard1.0/zh-hans/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netstandard1.0/zh-hant/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netstandard1.3/System.ObjectModel.dll +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netstandard1.3/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netstandard1.3/de/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netstandard1.3/es/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netstandard1.3/fr/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netstandard1.3/it/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netstandard1.3/ja/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netstandard1.3/ko/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netstandard1.3/ru/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netstandard1.3/zh-hans/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/netstandard1.3/zh-hant/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/system.objectmodel.4.0.12.nupkg +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/system.objectmodel.4.0.12.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.0.12/system.objectmodel.nuspec +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/lib/netcore50/System.ObjectModel.dll +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/lib/netstandard1.3/System.ObjectModel.dll +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netcore50/System.ObjectModel.dll +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netcore50/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netcore50/de/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netcore50/es/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netcore50/fr/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netcore50/it/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netcore50/ja/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netcore50/ko/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netcore50/ru/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netcore50/zh-hans/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netcore50/zh-hant/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netstandard1.0/System.ObjectModel.dll +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netstandard1.0/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netstandard1.0/de/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netstandard1.0/es/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netstandard1.0/fr/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netstandard1.0/it/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netstandard1.0/ja/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netstandard1.0/ko/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netstandard1.0/ru/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netstandard1.0/zh-hans/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netstandard1.0/zh-hant/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netstandard1.3/System.ObjectModel.dll +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netstandard1.3/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netstandard1.3/de/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netstandard1.3/es/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netstandard1.3/fr/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netstandard1.3/it/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netstandard1.3/ja/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netstandard1.3/ko/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netstandard1.3/ru/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netstandard1.3/zh-hans/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/netstandard1.3/zh-hant/System.ObjectModel.xml +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/system.objectmodel.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/system.objectmodel.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.objectmodel/4.3.0/system.objectmodel.nuspec +dotnet/sdk/NuGetFallbackFolder/system.private.datacontractserialization/4.1.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.private.datacontractserialization/4.1.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.private.datacontractserialization/4.1.1/lib/netstandard1.3/System.Private.DataContractSerialization.dll +dotnet/sdk/NuGetFallbackFolder/system.private.datacontractserialization/4.1.1/ref/netstandard/_._ +dotnet/sdk/NuGetFallbackFolder/system.private.datacontractserialization/4.1.1/runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll +dotnet/sdk/NuGetFallbackFolder/system.private.datacontractserialization/4.1.1/system.private.datacontractserialization.4.1.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.private.datacontractserialization/4.1.1/system.private.datacontractserialization.4.1.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.private.datacontractserialization/4.1.1/system.private.datacontractserialization.nuspec +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.0.1/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.0.1/lib/netcore50/System.Reflection.Emit.ILGeneration.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.0.1/lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.0.1/lib/portable-net45+wp8/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.0.1/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.0.1/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.0.1/ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.0.1/ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.0.1/ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.0.1/ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.0.1/ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.0.1/ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.0.1/ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.0.1/ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.0.1/ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.0.1/ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.0.1/ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.0.1/ref/portable-net45+wp8/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.0.1/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.0.1/runtimes/aot/lib/netcore50/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.0.1/system.reflection.emit.ilgeneration.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.0.1/system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.0.1/system.reflection.emit.ilgeneration.nuspec +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/lib/netcore50/System.Reflection.Emit.ILGeneration.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/lib/portable-net45+wp8/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/ref/portable-net45+wp8/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/runtimes/aot/lib/netcore50/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/system.reflection.emit.ilgeneration.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.ilgeneration/4.3.0/system.reflection.emit.ilgeneration.nuspec +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.0.1/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.0.1/lib/netcore50/System.Reflection.Emit.Lightweight.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.0.1/lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.0.1/lib/portable-net45+wp8/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.0.1/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.0.1/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.0.1/ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.0.1/ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.0.1/ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.0.1/ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.0.1/ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.0.1/ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.0.1/ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.0.1/ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.0.1/ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.0.1/ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.0.1/ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.0.1/ref/portable-net45+wp8/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.0.1/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.0.1/runtimes/aot/lib/netcore50/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.0.1/system.reflection.emit.lightweight.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.0.1/system.reflection.emit.lightweight.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.0.1/system.reflection.emit.lightweight.nuspec +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/lib/netcore50/System.Reflection.Emit.Lightweight.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/lib/portable-net45+wp8/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/ref/portable-net45+wp8/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/runtimes/aot/lib/netcore50/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/system.reflection.emit.lightweight.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/system.reflection.emit.lightweight.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit.lightweight/4.3.0/system.reflection.emit.lightweight.nuspec +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.0.1/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.0.1/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.0.1/lib/netcore50/System.Reflection.Emit.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.0.1/lib/netstandard1.3/System.Reflection.Emit.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.0.1/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.0.1/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.0.1/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.0.1/ref/netstandard1.1/System.Reflection.Emit.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.0.1/ref/netstandard1.1/System.Reflection.Emit.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.0.1/ref/netstandard1.1/de/System.Reflection.Emit.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.0.1/ref/netstandard1.1/es/System.Reflection.Emit.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.0.1/ref/netstandard1.1/fr/System.Reflection.Emit.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.0.1/ref/netstandard1.1/it/System.Reflection.Emit.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.0.1/ref/netstandard1.1/ja/System.Reflection.Emit.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.0.1/ref/netstandard1.1/ko/System.Reflection.Emit.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.0.1/ref/netstandard1.1/ru/System.Reflection.Emit.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.0.1/ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.0.1/ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.0.1/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.0.1/system.reflection.emit.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.0.1/system.reflection.emit.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.0.1/system.reflection.emit.nuspec +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/lib/monotouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/lib/netcore50/System.Reflection.Emit.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/lib/netstandard1.3/System.Reflection.Emit.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/ref/netstandard1.1/System.Reflection.Emit.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/ref/netstandard1.1/System.Reflection.Emit.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/ref/netstandard1.1/de/System.Reflection.Emit.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/ref/netstandard1.1/es/System.Reflection.Emit.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/ref/netstandard1.1/fr/System.Reflection.Emit.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/ref/netstandard1.1/it/System.Reflection.Emit.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/ref/netstandard1.1/ja/System.Reflection.Emit.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/ref/netstandard1.1/ko/System.Reflection.Emit.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/ref/netstandard1.1/ru/System.Reflection.Emit.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/system.reflection.emit.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/system.reflection.emit.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.reflection.emit/4.3.0/system.reflection.emit.nuspec +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/netcore50/System.Reflection.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/netcore50/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/netcore50/de/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/netcore50/es/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/netcore50/fr/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/netcore50/it/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/netcore50/ja/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/netcore50/ko/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/netcore50/ru/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/netcore50/zh-hans/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/netcore50/zh-hant/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/netstandard1.0/System.Reflection.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/netstandard1.0/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/netstandard1.0/de/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/netstandard1.0/es/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/netstandard1.0/fr/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/netstandard1.0/it/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/netstandard1.0/ja/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/netstandard1.0/ko/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/netstandard1.0/ru/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/system.reflection.extensions.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/system.reflection.extensions.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.0.1/system.reflection.extensions.nuspec +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/netcore50/System.Reflection.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/netcore50/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/netcore50/de/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/netcore50/es/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/netcore50/fr/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/netcore50/it/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/netcore50/ja/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/netcore50/ko/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/netcore50/ru/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/netcore50/zh-hans/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/netcore50/zh-hant/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/netstandard1.0/System.Reflection.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/netstandard1.0/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/netstandard1.0/de/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/netstandard1.0/es/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/netstandard1.0/fr/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/netstandard1.0/it/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/netstandard1.0/ja/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/netstandard1.0/ko/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/netstandard1.0/ru/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/system.reflection.extensions.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/system.reflection.extensions.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.reflection.extensions/4.3.0/system.reflection.extensions.nuspec +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.3.0/lib/netstandard1.1/System.Reflection.Metadata.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.3.0/lib/netstandard1.1/System.Reflection.Metadata.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.3.0/lib/portable-net45+win8/System.Reflection.Metadata.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.3.0/lib/portable-net45+win8/System.Reflection.Metadata.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.3.0/system.reflection.metadata.1.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.3.0/system.reflection.metadata.1.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.3.0/system.reflection.metadata.nuspec +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.4.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.4.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.4.1/lib/netstandard1.1/System.Reflection.Metadata.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.4.1/lib/netstandard1.1/System.Reflection.Metadata.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.4.1/lib/portable-net45+win8/System.Reflection.Metadata.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.4.1/lib/portable-net45+win8/System.Reflection.Metadata.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.4.1/system.reflection.metadata.1.4.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.4.1/system.reflection.metadata.1.4.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.4.1/system.reflection.metadata.nuspec +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.4.2/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.4.2/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.4.2/lib/netstandard1.1/System.Reflection.Metadata.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.4.2/lib/netstandard1.1/System.Reflection.Metadata.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.4.2/lib/portable-net45+win8/System.Reflection.Metadata.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.4.2/lib/portable-net45+win8/System.Reflection.Metadata.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.4.2/system.reflection.metadata.1.4.2.nupkg +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.4.2/system.reflection.metadata.1.4.2.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.4.2/system.reflection.metadata.nuspec +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.5.0/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.5.0/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.5.0/lib/netcoreapp2.0/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.5.0/lib/netstandard1.1/System.Reflection.Metadata.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.5.0/lib/netstandard1.1/System.Reflection.Metadata.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.5.0/lib/netstandard2.0/System.Reflection.Metadata.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.5.0/lib/netstandard2.0/System.Reflection.Metadata.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.5.0/lib/portable-net45+win8/System.Reflection.Metadata.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.5.0/lib/portable-net45+win8/System.Reflection.Metadata.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.5.0/ref/netcoreapp2.0/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.5.0/system.reflection.metadata.1.5.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.5.0/system.reflection.metadata.1.5.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.5.0/system.reflection.metadata.nuspec +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.5.0/useSharedDesignerContext.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.metadata/1.5.0/version.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/netcore50/System.Reflection.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/netcore50/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/netcore50/de/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/netcore50/es/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/netcore50/fr/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/netcore50/it/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/netcore50/ja/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/netcore50/ko/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/netcore50/ru/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/netcore50/zh-hans/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/netcore50/zh-hant/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/netstandard1.0/System.Reflection.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/netstandard1.0/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/netstandard1.0/de/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/netstandard1.0/es/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/netstandard1.0/fr/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/netstandard1.0/it/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/netstandard1.0/ja/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/netstandard1.0/ko/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/netstandard1.0/ru/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/system.reflection.primitives.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/system.reflection.primitives.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.0.1/system.reflection.primitives.nuspec +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/netcore50/System.Reflection.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/netcore50/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/netcore50/de/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/netcore50/es/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/netcore50/fr/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/netcore50/it/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/netcore50/ja/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/netcore50/ko/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/netcore50/ru/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/netcore50/zh-hans/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/netcore50/zh-hant/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/netstandard1.0/System.Reflection.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/netstandard1.0/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/netstandard1.0/de/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/netstandard1.0/es/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/netstandard1.0/fr/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/netstandard1.0/it/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/netstandard1.0/ja/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/netstandard1.0/ko/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/netstandard1.0/ru/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/system.reflection.primitives.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/system.reflection.primitives.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.reflection.primitives/4.3.0/system.reflection.primitives.nuspec +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/lib/net46/System.Reflection.TypeExtensions.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/lib/net462/System.Reflection.TypeExtensions.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/lib/netcore50/System.Reflection.TypeExtensions.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/lib/netstandard1.5/System.Reflection.TypeExtensions.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/net46/System.Reflection.TypeExtensions.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/net462/System.Reflection.TypeExtensions.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/netstandard1.3/System.Reflection.TypeExtensions.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/netstandard1.3/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/netstandard1.5/System.Reflection.TypeExtensions.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/netstandard1.5/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/system.reflection.typeextensions.4.1.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/system.reflection.typeextensions.4.1.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.1.0/system.reflection.typeextensions.nuspec +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/lib/net46/System.Reflection.TypeExtensions.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/lib/net462/System.Reflection.TypeExtensions.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/lib/netcore50/System.Reflection.TypeExtensions.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/lib/netstandard1.5/System.Reflection.TypeExtensions.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/net46/System.Reflection.TypeExtensions.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/net462/System.Reflection.TypeExtensions.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/netstandard1.3/System.Reflection.TypeExtensions.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/netstandard1.3/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/netstandard1.5/System.Reflection.TypeExtensions.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/netstandard1.5/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/system.reflection.typeextensions.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/system.reflection.typeextensions.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.reflection.typeextensions/4.3.0/system.reflection.typeextensions.nuspec +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/lib/net462/System.Reflection.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/net462/System.Reflection.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netcore50/System.Reflection.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netcore50/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netcore50/de/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netcore50/es/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netcore50/fr/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netcore50/it/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netcore50/ja/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netcore50/ko/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netcore50/ru/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netcore50/zh-hans/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netcore50/zh-hant/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.0/System.Reflection.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.0/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.0/de/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.0/es/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.0/fr/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.0/it/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.0/ja/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.0/ko/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.0/ru/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.0/zh-hans/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.0/zh-hant/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.3/System.Reflection.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.3/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.3/de/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.3/es/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.3/fr/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.3/it/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.3/ja/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.3/ko/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.3/ru/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.3/zh-hans/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.3/zh-hant/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.5/System.Reflection.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.5/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.5/de/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.5/es/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.5/fr/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.5/it/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.5/ja/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.5/ko/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.5/ru/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.5/zh-hans/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/netstandard1.5/zh-hant/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/system.reflection.4.1.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/system.reflection.4.1.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.1.0/system.reflection.nuspec +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/lib/net462/System.Reflection.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/net462/System.Reflection.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netcore50/System.Reflection.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netcore50/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netcore50/de/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netcore50/es/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netcore50/fr/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netcore50/it/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netcore50/ja/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netcore50/ko/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netcore50/ru/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netcore50/zh-hans/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netcore50/zh-hant/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.0/System.Reflection.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.0/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.0/de/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.0/es/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.0/fr/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.0/it/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.0/ja/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.0/ko/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.0/ru/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.0/zh-hans/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.0/zh-hant/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.3/System.Reflection.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.3/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.3/de/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.3/es/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.3/fr/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.3/it/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.3/ja/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.3/ko/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.3/ru/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.3/zh-hans/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.3/zh-hant/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.5/System.Reflection.dll +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.5/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.5/de/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.5/es/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.5/fr/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.5/it/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.5/ja/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.5/ko/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.5/ru/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.5/zh-hans/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/netstandard1.5/zh-hant/System.Reflection.xml +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/system.reflection.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/system.reflection.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.reflection/4.3.0/system.reflection.nuspec +dotnet/sdk/NuGetFallbackFolder/system.resources.reader/4.0.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.resources.reader/4.0.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.resources.reader/4.0.0/lib/netstandard1.0/System.Resources.Reader.dll +dotnet/sdk/NuGetFallbackFolder/system.resources.reader/4.0.0/system.resources.reader.4.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.resources.reader/4.0.0/system.resources.reader.4.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.resources.reader/4.0.0/system.resources.reader.nuspec +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/netcore50/System.Resources.ResourceManager.dll +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/netcore50/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/netcore50/de/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/netcore50/es/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/netcore50/fr/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/netcore50/it/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/netcore50/ja/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/netcore50/ko/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/netcore50/ru/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/netcore50/zh-hans/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/netcore50/zh-hant/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/netstandard1.0/System.Resources.ResourceManager.dll +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/netstandard1.0/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/netstandard1.0/de/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/netstandard1.0/es/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/netstandard1.0/fr/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/netstandard1.0/it/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/netstandard1.0/ja/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/netstandard1.0/ko/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/netstandard1.0/ru/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/system.resources.resourcemanager.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/system.resources.resourcemanager.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.0.1/system.resources.resourcemanager.nuspec +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/netcore50/System.Resources.ResourceManager.dll +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/netcore50/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/netcore50/de/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/netcore50/es/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/netcore50/fr/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/netcore50/it/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/netcore50/ja/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/netcore50/ko/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/netcore50/ru/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/netcore50/zh-hans/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/netcore50/zh-hant/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/netstandard1.0/System.Resources.ResourceManager.dll +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/netstandard1.0/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/netstandard1.0/de/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/netstandard1.0/es/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/netstandard1.0/fr/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/netstandard1.0/it/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/netstandard1.0/ja/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/netstandard1.0/ko/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/netstandard1.0/ru/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/system.resources.resourcemanager.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/system.resources.resourcemanager.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.resources.resourcemanager/4.3.0/system.resources.resourcemanager.nuspec +dotnet/sdk/NuGetFallbackFolder/system.resources.writer/4.0.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.resources.writer/4.0.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.resources.writer/4.0.0/lib/netstandard1.3/System.Resources.Writer.dll +dotnet/sdk/NuGetFallbackFolder/system.resources.writer/4.0.0/system.resources.writer.4.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.resources.writer/4.0.0/system.resources.writer.4.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.resources.writer/4.0.0/system.resources.writer.nuspec +dotnet/sdk/NuGetFallbackFolder/system.runtime.compilerservices.unsafe/4.4.0/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/system.runtime.compilerservices.unsafe/4.4.0/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/system.runtime.compilerservices.unsafe/4.4.0/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.compilerservices.unsafe/4.4.0/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.compilerservices.unsafe/4.4.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.compilerservices.unsafe/4.4.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.compilerservices.unsafe/4.4.0/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.compilerservices.unsafe/4.4.0/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.compilerservices.unsafe/4.4.0/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.compilerservices.unsafe/4.4.0/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.compilerservices.unsafe/4.4.0/system.runtime.compilerservices.unsafe.4.4.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.runtime.compilerservices.unsafe/4.4.0/system.runtime.compilerservices.unsafe.4.4.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.runtime.compilerservices.unsafe/4.4.0/system.runtime.compilerservices.unsafe.nuspec +dotnet/sdk/NuGetFallbackFolder/system.runtime.compilerservices.unsafe/4.4.0/useSharedDesignerContext.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.compilerservices.unsafe/4.4.0/version.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/lib/net462/System.Runtime.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/net462/System.Runtime.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netcore50/System.Runtime.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netcore50/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netcore50/de/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netcore50/es/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netcore50/fr/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netcore50/it/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netcore50/ja/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netcore50/ko/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netcore50/ru/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netcore50/zh-hans/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netcore50/zh-hant/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.0/System.Runtime.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.0/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.0/de/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.0/es/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.0/fr/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.0/it/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.0/ja/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.0/ko/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.0/ru/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.3/System.Runtime.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.3/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.3/de/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.3/es/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.3/fr/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.3/it/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.3/ja/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.3/ko/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.3/ru/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.5/System.Runtime.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.5/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.5/de/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.5/es/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.5/fr/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.5/it/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.5/ja/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.5/ko/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.5/ru/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/system.runtime.extensions.4.1.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/system.runtime.extensions.4.1.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.1.0/system.runtime.extensions.nuspec +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/lib/net462/System.Runtime.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/net462/System.Runtime.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netcore50/System.Runtime.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netcore50/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netcore50/de/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netcore50/es/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netcore50/fr/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netcore50/it/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netcore50/ja/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netcore50/ko/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netcore50/ru/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netcore50/zh-hans/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netcore50/zh-hant/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.0/System.Runtime.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.0/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.0/de/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.0/es/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.0/fr/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.0/it/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.0/ja/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.0/ko/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.0/ru/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.3/System.Runtime.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.3/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.3/de/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.3/es/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.3/fr/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.3/it/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.3/ja/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.3/ko/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.3/ru/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.5/System.Runtime.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.5/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.5/de/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.5/es/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.5/fr/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.5/it/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.5/ja/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.5/ko/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.5/ru/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/system.runtime.extensions.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/system.runtime.extensions.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.runtime.extensions/4.3.0/system.runtime.extensions.nuspec +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/lib/net46/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/ref/net46/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/ref/netstandard1.3/System.Runtime.Handles.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/ref/netstandard1.3/System.Runtime.Handles.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/ref/netstandard1.3/de/System.Runtime.Handles.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/ref/netstandard1.3/es/System.Runtime.Handles.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/ref/netstandard1.3/fr/System.Runtime.Handles.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/ref/netstandard1.3/it/System.Runtime.Handles.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/ref/netstandard1.3/ja/System.Runtime.Handles.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/ref/netstandard1.3/ko/System.Runtime.Handles.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/ref/netstandard1.3/ru/System.Runtime.Handles.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/system.runtime.handles.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/system.runtime.handles.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.0.1/system.runtime.handles.nuspec +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/lib/net46/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/ref/net46/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/ref/netstandard1.3/System.Runtime.Handles.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/ref/netstandard1.3/System.Runtime.Handles.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/ref/netstandard1.3/de/System.Runtime.Handles.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/ref/netstandard1.3/es/System.Runtime.Handles.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/ref/netstandard1.3/fr/System.Runtime.Handles.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/ref/netstandard1.3/it/System.Runtime.Handles.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/ref/netstandard1.3/ja/System.Runtime.Handles.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/ref/netstandard1.3/ko/System.Runtime.Handles.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/ref/netstandard1.3/ru/System.Runtime.Handles.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/system.runtime.handles.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/system.runtime.handles.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.runtime.handles/4.3.0/system.runtime.handles.nuspec +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.0.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.0.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.0.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.0.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.0.0/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.0.0/lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.0.0/lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.0.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.0.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.0.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.0.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.0.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.0.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.0.0/ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.0.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.0.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.0.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.0.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.0.0/runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.0.0/runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.0.0/runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.0.0/runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.0.0/runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.0.0/system.runtime.interopservices.runtimeinformation.4.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.0.0/system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.0.0/system.runtime.interopservices.runtimeinformation.nuspec +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.3.0/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.3.0/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.3.0/lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.3.0/lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.3.0/ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.3.0/runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.3.0/runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.3.0/runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.3.0/runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.3.0/runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.3.0/system.runtime.interopservices.runtimeinformation.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.3.0/system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices.runtimeinformation/4.3.0/system.runtime.interopservices.runtimeinformation.nuspec +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/lib/net462/System.Runtime.InteropServices.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/lib/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/net462/System.Runtime.InteropServices.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netcore50/System.Runtime.InteropServices.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netcore50/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netcore50/de/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netcore50/es/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netcore50/fr/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netcore50/it/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netcore50/ja/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netcore50/ko/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netcore50/ru/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netcore50/zh-hans/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netcore50/zh-hant/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.1/System.Runtime.InteropServices.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.1/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.1/de/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.1/es/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.1/fr/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.1/it/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.1/ja/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.1/ko/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.1/ru/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.2/System.Runtime.InteropServices.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.2/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.2/de/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.2/es/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.2/fr/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.2/it/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.2/ja/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.2/ko/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.2/ru/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.3/System.Runtime.InteropServices.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.3/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.3/de/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.3/es/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.3/fr/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.3/it/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.3/ja/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.3/ko/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.3/ru/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.5/System.Runtime.InteropServices.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.5/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.5/de/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.5/es/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.5/fr/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.5/it/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.5/ja/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.5/ko/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.5/ru/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/system.runtime.interopservices.4.1.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/system.runtime.interopservices.4.1.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.1.0/system.runtime.interopservices.nuspec +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/lib/net462/System.Runtime.InteropServices.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/lib/net463/System.Runtime.InteropServices.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/lib/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/net462/System.Runtime.InteropServices.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/net463/System.Runtime.InteropServices.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netcore50/System.Runtime.InteropServices.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netcore50/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netcore50/de/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netcore50/es/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netcore50/fr/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netcore50/it/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netcore50/ja/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netcore50/ko/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netcore50/ru/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netcore50/zh-hans/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netcore50/zh-hant/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netcoreapp1.1/System.Runtime.InteropServices.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.1/System.Runtime.InteropServices.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.1/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.1/de/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.1/es/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.1/fr/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.1/it/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.1/ja/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.1/ko/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.1/ru/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.2/System.Runtime.InteropServices.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.2/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.2/de/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.2/es/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.2/fr/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.2/it/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.2/ja/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.2/ko/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.2/ru/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.3/System.Runtime.InteropServices.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.3/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.3/de/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.3/es/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.3/fr/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.3/it/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.3/ja/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.3/ko/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.3/ru/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.5/System.Runtime.InteropServices.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.5/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.5/de/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.5/es/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.5/fr/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.5/it/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.5/ja/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.5/ko/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.5/ru/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/system.runtime.interopservices.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/system.runtime.interopservices.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.runtime.interopservices/4.3.0/system.runtime.interopservices.nuspec +dotnet/sdk/NuGetFallbackFolder/system.runtime.loader/4.0.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.loader/4.0.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.loader/4.0.0/lib/net462/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.loader/4.0.0/lib/netstandard1.5/System.Runtime.Loader.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.loader/4.0.0/ref/netstandard1.5/System.Runtime.Loader.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.loader/4.0.0/ref/netstandard1.5/System.Runtime.Loader.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.loader/4.0.0/ref/netstandard1.5/de/System.Runtime.Loader.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.loader/4.0.0/ref/netstandard1.5/es/System.Runtime.Loader.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.loader/4.0.0/ref/netstandard1.5/fr/System.Runtime.Loader.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.loader/4.0.0/ref/netstandard1.5/it/System.Runtime.Loader.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.loader/4.0.0/ref/netstandard1.5/ja/System.Runtime.Loader.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.loader/4.0.0/ref/netstandard1.5/ko/System.Runtime.Loader.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.loader/4.0.0/ref/netstandard1.5/ru/System.Runtime.Loader.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.loader/4.0.0/ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.loader/4.0.0/ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.loader/4.0.0/system.runtime.loader.4.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.runtime.loader/4.0.0/system.runtime.loader.4.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.runtime.loader/4.0.0/system.runtime.loader.nuspec +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/lib/netcore50/System.Runtime.Numerics.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/lib/netstandard1.3/System.Runtime.Numerics.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/lib/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/netcore50/System.Runtime.Numerics.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/netcore50/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/netcore50/de/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/netcore50/es/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/netcore50/fr/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/netcore50/it/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/netcore50/ja/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/netcore50/ko/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/netcore50/ru/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/netcore50/zh-hans/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/netcore50/zh-hant/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/netstandard1.1/System.Runtime.Numerics.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/netstandard1.1/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/netstandard1.1/de/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/netstandard1.1/es/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/netstandard1.1/fr/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/netstandard1.1/it/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/netstandard1.1/ja/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/netstandard1.1/ko/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/netstandard1.1/ru/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/system.runtime.numerics.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/system.runtime.numerics.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.0.1/system.runtime.numerics.nuspec +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/lib/netcore50/System.Runtime.Numerics.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/lib/netstandard1.3/System.Runtime.Numerics.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/lib/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/netcore50/System.Runtime.Numerics.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/netcore50/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/netcore50/de/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/netcore50/es/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/netcore50/fr/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/netcore50/it/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/netcore50/ja/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/netcore50/ko/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/netcore50/ru/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/netcore50/zh-hans/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/netcore50/zh-hant/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/netstandard1.1/System.Runtime.Numerics.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/netstandard1.1/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/netstandard1.1/de/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/netstandard1.1/es/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/netstandard1.1/fr/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/netstandard1.1/it/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/netstandard1.1/ja/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/netstandard1.1/ko/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/netstandard1.1/ru/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/system.runtime.numerics.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/system.runtime.numerics.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.runtime.numerics/4.3.0/system.runtime.numerics.nuspec +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.formatters/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.formatters/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.formatters/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.formatters/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.formatters/4.3.0/lib/net46/System.Runtime.Serialization.Formatters.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.formatters/4.3.0/lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.formatters/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.formatters/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.formatters/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.formatters/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.formatters/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.formatters/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.formatters/4.3.0/ref/net46/System.Runtime.Serialization.Formatters.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.formatters/4.3.0/ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.formatters/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.formatters/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.formatters/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.formatters/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.formatters/4.3.0/system.runtime.serialization.formatters.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.formatters/4.3.0/system.runtime.serialization.formatters.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.formatters/4.3.0/system.runtime.serialization.formatters.nuspec +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/lib/netcore50/System.Runtime.Serialization.Json.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/lib/netstandard1.3/System.Runtime.Serialization.Json.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/netcore50/System.Runtime.Serialization.Json.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/netcore50/System.Runtime.Serialization.Json.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/netcore50/de/System.Runtime.Serialization.Json.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/netcore50/es/System.Runtime.Serialization.Json.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/netcore50/fr/System.Runtime.Serialization.Json.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/netcore50/it/System.Runtime.Serialization.Json.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/netcore50/ja/System.Runtime.Serialization.Json.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/netcore50/ko/System.Runtime.Serialization.Json.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/netcore50/ru/System.Runtime.Serialization.Json.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/netcore50/zh-hans/System.Runtime.Serialization.Json.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/netcore50/zh-hant/System.Runtime.Serialization.Json.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/netstandard1.0/System.Runtime.Serialization.Json.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/netstandard1.0/System.Runtime.Serialization.Json.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/netstandard1.0/de/System.Runtime.Serialization.Json.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/netstandard1.0/es/System.Runtime.Serialization.Json.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/netstandard1.0/fr/System.Runtime.Serialization.Json.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/netstandard1.0/it/System.Runtime.Serialization.Json.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/netstandard1.0/ja/System.Runtime.Serialization.Json.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/netstandard1.0/ko/System.Runtime.Serialization.Json.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/netstandard1.0/ru/System.Runtime.Serialization.Json.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Json.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Json.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/system.runtime.serialization.json.4.0.2.nupkg +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/system.runtime.serialization.json.4.0.2.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.json/4.0.2/system.runtime.serialization.json.nuspec +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/lib/net46/System.Runtime.Serialization.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/lib/netcore50/System.Runtime.Serialization.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/net46/System.Runtime.Serialization.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netcore50/System.Runtime.Serialization.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netcore50/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netcore50/de/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netcore50/es/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netcore50/it/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/system.runtime.serialization.primitives.4.1.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/system.runtime.serialization.primitives.4.1.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.1.1/system.runtime.serialization.primitives.nuspec +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/lib/net46/System.Runtime.Serialization.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/lib/netcore50/System.Runtime.Serialization.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/net46/System.Runtime.Serialization.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netcore50/System.Runtime.Serialization.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netcore50/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netcore50/de/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netcore50/es/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netcore50/it/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/system.runtime.serialization.primitives.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/system.runtime.serialization.primitives.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.primitives/4.3.0/system.runtime.serialization.primitives.nuspec +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/lib/net46/System.Runtime.Serialization.Xml.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/lib/netcore50/System.Runtime.Serialization.Xml.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/lib/netstandard1.3/System.Runtime.Serialization.Xml.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/net46/System.Runtime.Serialization.Xml.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netcore50/System.Runtime.Serialization.Xml.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netcore50/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netcore50/de/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netcore50/es/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netcore50/fr/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netcore50/it/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netcore50/ja/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netcore50/ko/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netcore50/ru/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netcore50/zh-hans/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netcore50/zh-hant/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netstandard1.0/System.Runtime.Serialization.Xml.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netstandard1.0/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netstandard1.0/de/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netstandard1.0/es/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netstandard1.0/fr/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netstandard1.0/it/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netstandard1.0/ja/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netstandard1.0/ko/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netstandard1.0/ru/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netstandard1.3/System.Runtime.Serialization.Xml.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netstandard1.3/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netstandard1.3/de/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netstandard1.3/es/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netstandard1.3/fr/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netstandard1.3/it/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netstandard1.3/ja/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netstandard1.3/ko/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netstandard1.3/ru/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/system.runtime.serialization.xml.4.1.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/system.runtime.serialization.xml.4.1.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.runtime.serialization.xml/4.1.1/system.runtime.serialization.xml.nuspec +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/lib/net462/System.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/lib/portable-net45+win8+wp80+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/net462/System.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netcore50/System.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netcore50/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netcore50/de/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netcore50/es/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netcore50/fr/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netcore50/it/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netcore50/ja/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netcore50/ko/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netcore50/ru/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netcore50/zh-hans/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netcore50/zh-hant/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.0/System.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.0/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.0/de/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.0/es/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.0/fr/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.0/it/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.0/ja/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.0/ko/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.0/ru/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.0/zh-hans/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.0/zh-hant/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.2/System.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.2/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.2/de/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.2/es/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.2/fr/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.2/it/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.2/ja/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.2/ko/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.2/ru/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.2/zh-hans/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.2/zh-hant/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.3/System.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.3/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.3/de/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.3/es/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.3/fr/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.3/it/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.3/ja/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.3/ko/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.3/ru/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.3/zh-hans/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.3/zh-hant/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.5/System.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.5/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.5/de/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.5/es/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.5/fr/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.5/it/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.5/ja/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.5/ko/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.5/ru/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.5/zh-hans/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/netstandard1.5/zh-hant/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/portable-net45+win8+wp80+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/system.runtime.4.1.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/system.runtime.4.1.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.1.0/system.runtime.nuspec +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/lib/net462/System.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/lib/portable-net45+win8+wp80+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/net462/System.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netcore50/System.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netcore50/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netcore50/de/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netcore50/es/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netcore50/fr/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netcore50/it/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netcore50/ja/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netcore50/ko/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netcore50/ru/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netcore50/zh-hans/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netcore50/zh-hant/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.0/System.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.0/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.0/de/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.0/es/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.0/fr/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.0/it/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.0/ja/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.0/ko/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.0/ru/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.0/zh-hans/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.0/zh-hant/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.2/System.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.2/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.2/de/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.2/es/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.2/fr/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.2/it/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.2/ja/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.2/ko/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.2/ru/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.2/zh-hans/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.2/zh-hant/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.3/System.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.3/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.3/de/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.3/es/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.3/fr/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.3/it/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.3/ja/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.3/ko/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.3/ru/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.3/zh-hans/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.3/zh-hant/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.5/System.Runtime.dll +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.5/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.5/de/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.5/es/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.5/fr/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.5/it/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.5/ja/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.5/ko/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.5/ru/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.5/zh-hans/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/netstandard1.5/zh-hant/System.Runtime.xml +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/portable-net45+win8+wp80+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/system.runtime.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/system.runtime.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.runtime/4.3.0/system.runtime.nuspec +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/lib/net46/System.Security.AccessControl.dll +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/lib/net461/System.Security.AccessControl.dll +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/lib/netstandard1.3/System.Security.AccessControl.dll +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/lib/netstandard2.0/System.Security.AccessControl.dll +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/ref/net46/System.Security.AccessControl.dll +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/ref/net461/System.Security.AccessControl.dll +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/ref/net461/System.Security.AccessControl.xml +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/ref/netstandard1.3/System.Security.AccessControl.dll +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/ref/netstandard1.3/System.Security.AccessControl.xml +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/ref/netstandard1.3/de/System.Security.AccessControl.xml +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/ref/netstandard1.3/es/System.Security.AccessControl.xml +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/ref/netstandard1.3/fr/System.Security.AccessControl.xml +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/ref/netstandard1.3/it/System.Security.AccessControl.xml +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/ref/netstandard1.3/ja/System.Security.AccessControl.xml +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/ref/netstandard1.3/ko/System.Security.AccessControl.xml +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/ref/netstandard1.3/ru/System.Security.AccessControl.xml +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/ref/netstandard2.0/System.Security.AccessControl.dll +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/ref/netstandard2.0/System.Security.AccessControl.xml +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/runtimes/unix/lib/netcoreapp2.0/System.Security.AccessControl.dll +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/runtimes/win/lib/net46/System.Security.AccessControl.dll +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/runtimes/win/lib/net461/System.Security.AccessControl.dll +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/system.security.accesscontrol.4.4.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/system.security.accesscontrol.4.4.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/system.security.accesscontrol.nuspec +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/useSharedDesignerContext.txt +dotnet/sdk/NuGetFallbackFolder/system.security.accesscontrol/4.4.0/version.txt +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/lib/net46/System.Security.Claims.dll +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/lib/netstandard1.3/System.Security.Claims.dll +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/ref/net46/System.Security.Claims.dll +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/ref/netstandard1.3/System.Security.Claims.dll +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/ref/netstandard1.3/System.Security.Claims.xml +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/ref/netstandard1.3/de/System.Security.Claims.xml +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/ref/netstandard1.3/es/System.Security.Claims.xml +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/ref/netstandard1.3/fr/System.Security.Claims.xml +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/ref/netstandard1.3/it/System.Security.Claims.xml +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/ref/netstandard1.3/ja/System.Security.Claims.xml +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/ref/netstandard1.3/ko/System.Security.Claims.xml +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/ref/netstandard1.3/ru/System.Security.Claims.xml +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/ref/netstandard1.3/zh-hans/System.Security.Claims.xml +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/ref/netstandard1.3/zh-hant/System.Security.Claims.xml +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/system.security.claims.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/system.security.claims.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.security.claims/4.3.0/system.security.claims.nuspec +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/lib/net46/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/lib/net461/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/lib/net463/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/ref/net46/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/ref/net461/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/ref/net463/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/system.security.cryptography.algorithms.4.2.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/system.security.cryptography.algorithms.4.2.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.2.0/system.security.cryptography.algorithms.nuspec +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/lib/net46/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/lib/net461/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/lib/net463/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/ref/net46/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/ref/net461/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/ref/net463/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/system.security.cryptography.algorithms.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/system.security.cryptography.algorithms.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.algorithms/4.3.0/system.security.cryptography.algorithms.nuspec +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.2.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.2.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.2.0/lib/net46/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.2.0/lib/net461/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.2.0/lib/net463/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.2.0/ref/net46/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.2.0/ref/net461/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.2.0/ref/net463/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.2.0/ref/netstandard1.3/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.2.0/ref/netstandard1.4/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.2.0/ref/netstandard1.6/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.2.0/runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.2.0/runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.2.0/runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.2.0/runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.2.0/runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.2.0/runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.2.0/system.security.cryptography.cng.4.2.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.2.0/system.security.cryptography.cng.4.2.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.2.0/system.security.cryptography.cng.nuspec +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.3.0/lib/net46/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.3.0/lib/net461/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.3.0/lib/net463/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.3.0/ref/net46/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.3.0/ref/net461/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.3.0/ref/net463/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.3.0/ref/netstandard1.3/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.3.0/ref/netstandard1.4/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.3.0/ref/netstandard1.6/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.3.0/runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.3.0/runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.3.0/runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.3.0/runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.3.0/runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.3.0/runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.3.0/system.security.cryptography.cng.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.3.0/system.security.cryptography.cng.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.cng/4.3.0/system.security.cryptography.cng.nuspec +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.0.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.0.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.0.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.0.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.0.0/lib/net46/System.Security.Cryptography.Csp.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.0.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.0.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.0.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.0.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.0.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.0.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.0.0/ref/net46/System.Security.Cryptography.Csp.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.0.0/ref/netstandard1.3/System.Security.Cryptography.Csp.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.0.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.0.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.0.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.0.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.0.0/runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.0.0/runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.0.0/runtimes/win/lib/netcore50/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.0.0/runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.0.0/system.security.cryptography.csp.4.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.0.0/system.security.cryptography.csp.4.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.0.0/system.security.cryptography.csp.nuspec +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.3.0/lib/net46/System.Security.Cryptography.Csp.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.3.0/ref/net46/System.Security.Cryptography.Csp.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.3.0/ref/netstandard1.3/System.Security.Cryptography.Csp.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.3.0/runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.3.0/runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.3.0/runtimes/win/lib/netcore50/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.3.0/runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.3.0/system.security.cryptography.csp.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.3.0/system.security.cryptography.csp.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.csp/4.3.0/system.security.cryptography.csp.nuspec +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/lib/net46/System.Security.Cryptography.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/ref/net46/System.Security.Cryptography.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/ref/netstandard1.3/System.Security.Cryptography.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/ref/netstandard1.3/System.Security.Cryptography.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/system.security.cryptography.encoding.4.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/system.security.cryptography.encoding.4.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.0.0/system.security.cryptography.encoding.nuspec +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/lib/net46/System.Security.Cryptography.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/ref/net46/System.Security.Cryptography.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/ref/netstandard1.3/System.Security.Cryptography.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/ref/netstandard1.3/System.Security.Cryptography.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/system.security.cryptography.encoding.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/system.security.cryptography.encoding.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.encoding/4.3.0/system.security.cryptography.encoding.nuspec +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.openssl/4.0.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.openssl/4.0.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.openssl/4.0.0/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.openssl/4.0.0/ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.openssl/4.0.0/runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.openssl/4.0.0/system.security.cryptography.openssl.4.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.openssl/4.0.0/system.security.cryptography.openssl.4.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.openssl/4.0.0/system.security.cryptography.openssl.nuspec +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.openssl/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.openssl/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.openssl/4.3.0/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.openssl/4.3.0/ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.openssl/4.3.0/runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.openssl/4.3.0/system.security.cryptography.openssl.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.openssl/4.3.0/system.security.cryptography.openssl.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.openssl/4.3.0/system.security.cryptography.openssl.nuspec +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.0.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.0.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.0.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.0.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.0.0/lib/net46/System.Security.Cryptography.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.0.0/lib/netstandard1.3/System.Security.Cryptography.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.0.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.0.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.0.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.0.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.0.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.0.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.0.0/ref/net46/System.Security.Cryptography.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.0.0/ref/netstandard1.3/System.Security.Cryptography.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.0.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.0.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.0.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.0.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.0.0/system.security.cryptography.primitives.4.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.0.0/system.security.cryptography.primitives.4.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.0.0/system.security.cryptography.primitives.nuspec +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.3.0/lib/net46/System.Security.Cryptography.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.3.0/lib/netstandard1.3/System.Security.Cryptography.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.3.0/ref/net46/System.Security.Cryptography.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.3.0/ref/netstandard1.3/System.Security.Cryptography.Primitives.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.3.0/system.security.cryptography.primitives.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.3.0/system.security.cryptography.primitives.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.primitives/4.3.0/system.security.cryptography.primitives.nuspec +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/lib/net46/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/lib/net461/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/net46/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/net461/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/system.security.cryptography.x509certificates.4.1.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/system.security.cryptography.x509certificates.4.1.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.1.0/system.security.cryptography.x509certificates.nuspec +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/lib/net46/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/lib/net461/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/net46/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/net461/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/system.security.cryptography.x509certificates.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/system.security.cryptography.x509certificates.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.x509certificates/4.3.0/system.security.cryptography.x509certificates.nuspec +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.xml/4.4.0/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.xml/4.4.0/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.xml/4.4.0/lib/net461/System.Security.Cryptography.Xml.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.xml/4.4.0/lib/netstandard2.0/System.Security.Cryptography.Xml.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.xml/4.4.0/ref/net461/System.Security.Cryptography.Xml.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.xml/4.4.0/ref/net461/System.Security.Cryptography.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.xml/4.4.0/ref/netstandard2.0/System.Security.Cryptography.Xml.dll +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.xml/4.4.0/ref/netstandard2.0/System.Security.Cryptography.Xml.xml +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.xml/4.4.0/system.security.cryptography.xml.4.4.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.xml/4.4.0/system.security.cryptography.xml.4.4.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.xml/4.4.0/system.security.cryptography.xml.nuspec +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.xml/4.4.0/useSharedDesignerContext.txt +dotnet/sdk/NuGetFallbackFolder/system.security.cryptography.xml/4.4.0/version.txt +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.3.0/lib/net46/System.Security.Principal.Windows.dll +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.3.0/ref/net46/System.Security.Principal.Windows.dll +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.3.0/ref/netstandard1.3/System.Security.Principal.Windows.dll +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.3.0/ref/netstandard1.3/System.Security.Principal.Windows.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.3.0/ref/netstandard1.3/de/System.Security.Principal.Windows.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.3.0/ref/netstandard1.3/es/System.Security.Principal.Windows.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.3.0/ref/netstandard1.3/fr/System.Security.Principal.Windows.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.3.0/ref/netstandard1.3/it/System.Security.Principal.Windows.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.3.0/ref/netstandard1.3/ja/System.Security.Principal.Windows.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.3.0/ref/netstandard1.3/ko/System.Security.Principal.Windows.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.3.0/ref/netstandard1.3/ru/System.Security.Principal.Windows.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.3.0/ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.3.0/ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.3.0/runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.3.0/runtimes/win/lib/net46/System.Security.Principal.Windows.dll +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.3.0/runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.3.0/system.security.principal.windows.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.3.0/system.security.principal.windows.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.3.0/system.security.principal.windows.nuspec +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/lib/net46/System.Security.Principal.Windows.dll +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/lib/net461/System.Security.Principal.Windows.dll +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/lib/netstandard1.3/System.Security.Principal.Windows.dll +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/lib/netstandard2.0/System.Security.Principal.Windows.dll +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/ref/net46/System.Security.Principal.Windows.dll +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/ref/net461/System.Security.Principal.Windows.dll +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/ref/net461/System.Security.Principal.Windows.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/ref/netstandard1.3/System.Security.Principal.Windows.dll +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/ref/netstandard1.3/System.Security.Principal.Windows.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/ref/netstandard1.3/de/System.Security.Principal.Windows.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/ref/netstandard1.3/es/System.Security.Principal.Windows.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/ref/netstandard1.3/fr/System.Security.Principal.Windows.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/ref/netstandard1.3/it/System.Security.Principal.Windows.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/ref/netstandard1.3/ja/System.Security.Principal.Windows.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/ref/netstandard1.3/ko/System.Security.Principal.Windows.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/ref/netstandard1.3/ru/System.Security.Principal.Windows.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/ref/netstandard2.0/System.Security.Principal.Windows.dll +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/ref/netstandard2.0/System.Security.Principal.Windows.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/runtimes/win/lib/net46/System.Security.Principal.Windows.dll +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/runtimes/win/lib/net461/System.Security.Principal.Windows.dll +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/system.security.principal.windows.4.4.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/system.security.principal.windows.4.4.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/system.security.principal.windows.nuspec +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/useSharedDesignerContext.txt +dotnet/sdk/NuGetFallbackFolder/system.security.principal.windows/4.4.0/version.txt +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/lib/netcore50/System.Security.Principal.dll +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/lib/netstandard1.0/System.Security.Principal.dll +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/netcore50/System.Security.Principal.dll +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/netcore50/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/netcore50/de/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/netcore50/es/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/netcore50/fr/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/netcore50/it/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/netcore50/ja/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/netcore50/ko/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/netcore50/ru/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/netcore50/zh-hans/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/netcore50/zh-hant/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/netstandard1.0/System.Security.Principal.dll +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/netstandard1.0/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/netstandard1.0/de/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/netstandard1.0/es/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/netstandard1.0/fr/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/netstandard1.0/it/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/netstandard1.0/ja/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/netstandard1.0/ko/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/netstandard1.0/ru/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/netstandard1.0/zh-hans/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/netstandard1.0/zh-hant/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/system.security.principal.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/system.security.principal.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.0.1/system.security.principal.nuspec +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/lib/netcore50/System.Security.Principal.dll +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/lib/netstandard1.0/System.Security.Principal.dll +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/netcore50/System.Security.Principal.dll +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/netcore50/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/netcore50/de/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/netcore50/es/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/netcore50/fr/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/netcore50/it/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/netcore50/ja/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/netcore50/ko/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/netcore50/ru/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/netcore50/zh-hans/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/netcore50/zh-hant/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/netstandard1.0/System.Security.Principal.dll +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/netstandard1.0/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/netstandard1.0/de/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/netstandard1.0/es/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/netstandard1.0/fr/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/netstandard1.0/it/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/netstandard1.0/ja/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/netstandard1.0/ko/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/netstandard1.0/ru/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/netstandard1.0/zh-hans/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/netstandard1.0/zh-hant/System.Security.Principal.xml +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/system.security.principal.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/system.security.principal.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.security.principal/4.3.0/system.security.principal.nuspec +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/net40/System.Spatial.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/net40/System.Spatial.xml +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/net40/de/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/net40/es/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/net40/fr/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/net40/it/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/net40/ja/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/net40/ko/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/net40/ru/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/net40/zh-Hans/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/net40/zh-Hant/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/netstandard1.1/System.Spatial.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/netstandard1.1/System.Spatial.xml +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/netstandard1.1/de/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/netstandard1.1/es/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/netstandard1.1/fr/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/netstandard1.1/it/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/netstandard1.1/ja/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/netstandard1.1/ko/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/netstandard1.1/ru/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/netstandard1.1/zh-Hans/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/netstandard1.1/zh-Hant/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/System.Spatial.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/System.Spatial.xml +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/de/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/es/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/fr/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/it/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/ja/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/ko/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/ru/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/zh-Hans/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/portable-net40+sl5+wp8+win8+wpa/zh-Hant/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/portable-net45+wp8+win8+wpa/System.Spatial.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/portable-net45+wp8+win8+wpa/System.Spatial.xml +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/portable-net45+wp8+win8+wpa/de/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/portable-net45+wp8+win8+wpa/es/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/portable-net45+wp8+win8+wpa/fr/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/portable-net45+wp8+win8+wpa/it/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/portable-net45+wp8+win8+wpa/ja/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/portable-net45+wp8+win8+wpa/ko/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/portable-net45+wp8+win8+wpa/ru/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/portable-net45+wp8+win8+wpa/zh-Hans/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/portable-net45+wp8+win8+wpa/zh-Hant/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/sl4/System.Spatial.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/sl4/System.Spatial.xml +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/sl4/de/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/sl4/es/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/sl4/fr/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/sl4/it/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/sl4/ja/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/sl4/ko/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/sl4/ru/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/sl4/zh-Hans/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/lib/sl4/zh-Hant/System.Spatial.resources.dll +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/system.spatial.5.8.2.nupkg +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/system.spatial.5.8.2.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.spatial/5.8.2/system.spatial.nuspec +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/lib/net46/System.Text.Encoding.CodePages.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/ref/netstandard1.3/System.Text.Encoding.CodePages.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/ref/netstandard1.3/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/system.text.encoding.codepages.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/system.text.encoding.codepages.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.0.1/system.text.encoding.codepages.nuspec +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/lib/net46/System.Text.Encoding.CodePages.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/ref/netstandard1.3/System.Text.Encoding.CodePages.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/ref/netstandard1.3/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/system.text.encoding.codepages.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/system.text.encoding.codepages.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.3.0/system.text.encoding.codepages.nuspec +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/lib/net46/System.Text.Encoding.CodePages.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/lib/net461/System.Text.Encoding.CodePages.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/lib/netstandard1.3/System.Text.Encoding.CodePages.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/lib/netstandard2.0/System.Text.Encoding.CodePages.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/ref/netstandard1.3/System.Text.Encoding.CodePages.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/ref/netstandard1.3/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/ref/netstandard2.0/System.Text.Encoding.CodePages.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/ref/netstandard2.0/System.Text.Encoding.CodePages.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/system.text.encoding.codepages.4.4.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/system.text.encoding.codepages.4.4.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/system.text.encoding.codepages.nuspec +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/useSharedDesignerContext.txt +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.codepages/4.4.0/version.txt +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netcore50/System.Text.Encoding.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netcore50/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netcore50/de/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netcore50/es/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netcore50/fr/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netcore50/it/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netcore50/ja/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netcore50/ko/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netcore50/ru/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netstandard1.0/System.Text.Encoding.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netstandard1.0/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netstandard1.3/System.Text.Encoding.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netstandard1.3/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/system.text.encoding.extensions.4.0.11.nupkg +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/system.text.encoding.extensions.4.0.11.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.0.11/system.text.encoding.extensions.nuspec +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netcore50/System.Text.Encoding.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netcore50/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netcore50/de/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netcore50/es/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netcore50/fr/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netcore50/it/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netcore50/ja/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netcore50/ko/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netcore50/ru/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netstandard1.0/System.Text.Encoding.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netstandard1.0/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netstandard1.3/System.Text.Encoding.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netstandard1.3/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/system.text.encoding.extensions.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/system.text.encoding.extensions.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.text.encoding.extensions/4.3.0/system.text.encoding.extensions.nuspec +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netcore50/System.Text.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netcore50/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netcore50/de/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netcore50/es/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netcore50/fr/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netcore50/it/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netcore50/ja/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netcore50/ko/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netcore50/ru/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netcore50/zh-hans/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netcore50/zh-hant/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netstandard1.0/System.Text.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netstandard1.0/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netstandard1.0/de/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netstandard1.0/es/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netstandard1.0/fr/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netstandard1.0/it/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netstandard1.0/ja/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netstandard1.0/ko/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netstandard1.0/ru/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netstandard1.0/zh-hans/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netstandard1.0/zh-hant/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netstandard1.3/System.Text.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netstandard1.3/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netstandard1.3/de/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netstandard1.3/es/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netstandard1.3/fr/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netstandard1.3/it/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netstandard1.3/ja/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netstandard1.3/ko/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netstandard1.3/ru/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netstandard1.3/zh-hans/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/netstandard1.3/zh-hant/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/system.text.encoding.4.0.11.nupkg +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/system.text.encoding.4.0.11.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.0.11/system.text.encoding.nuspec +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netcore50/System.Text.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netcore50/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netcore50/de/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netcore50/es/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netcore50/fr/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netcore50/it/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netcore50/ja/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netcore50/ko/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netcore50/ru/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netcore50/zh-hans/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netcore50/zh-hant/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netstandard1.0/System.Text.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netstandard1.0/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netstandard1.0/de/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netstandard1.0/es/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netstandard1.0/fr/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netstandard1.0/it/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netstandard1.0/ja/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netstandard1.0/ko/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netstandard1.0/ru/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netstandard1.0/zh-hans/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netstandard1.0/zh-hant/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netstandard1.3/System.Text.Encoding.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netstandard1.3/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netstandard1.3/de/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netstandard1.3/es/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netstandard1.3/fr/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netstandard1.3/it/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netstandard1.3/ja/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netstandard1.3/ko/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netstandard1.3/ru/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netstandard1.3/zh-hans/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/netstandard1.3/zh-hant/System.Text.Encoding.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.text.encoding/4.3.0/system.text.encoding.nuspec +dotnet/sdk/NuGetFallbackFolder/system.text.encodings.web/4.3.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.text.encodings.web/4.3.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.text.encodings.web/4.3.1/lib/netstandard1.0/System.Text.Encodings.Web.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encodings.web/4.3.1/lib/netstandard1.0/System.Text.Encodings.Web.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encodings.web/4.3.1/system.text.encodings.web.4.3.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.text.encodings.web/4.3.1/system.text.encodings.web.4.3.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.text.encodings.web/4.3.1/system.text.encodings.web.nuspec +dotnet/sdk/NuGetFallbackFolder/system.text.encodings.web/4.4.0/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/system.text.encodings.web/4.4.0/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/system.text.encodings.web/4.4.0/lib/netstandard1.0/System.Text.Encodings.Web.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encodings.web/4.4.0/lib/netstandard1.0/System.Text.Encodings.Web.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encodings.web/4.4.0/lib/netstandard2.0/System.Text.Encodings.Web.dll +dotnet/sdk/NuGetFallbackFolder/system.text.encodings.web/4.4.0/lib/netstandard2.0/System.Text.Encodings.Web.xml +dotnet/sdk/NuGetFallbackFolder/system.text.encodings.web/4.4.0/system.text.encodings.web.4.4.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.text.encodings.web/4.4.0/system.text.encodings.web.4.4.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.text.encodings.web/4.4.0/system.text.encodings.web.nuspec +dotnet/sdk/NuGetFallbackFolder/system.text.encodings.web/4.4.0/useSharedDesignerContext.txt +dotnet/sdk/NuGetFallbackFolder/system.text.encodings.web/4.4.0/version.txt +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/lib/net463/System.Text.RegularExpressions.dll +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/lib/netcore50/System.Text.RegularExpressions.dll +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/lib/netstandard1.6/System.Text.RegularExpressions.dll +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/net463/System.Text.RegularExpressions.dll +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netcore50/System.Text.RegularExpressions.dll +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netcore50/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netcore50/de/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netcore50/es/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netcore50/fr/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netcore50/it/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netcore50/ja/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netcore50/ko/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netcore50/ru/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netcore50/zh-hans/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netcore50/zh-hant/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.0/System.Text.RegularExpressions.dll +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.0/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.0/de/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.0/es/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.0/fr/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.0/it/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.0/ja/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.0/ko/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.0/ru/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.3/System.Text.RegularExpressions.dll +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.3/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.3/de/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.3/es/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.3/fr/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.3/it/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.3/ja/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.3/ko/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.3/ru/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.6/System.Text.RegularExpressions.dll +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.6/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.6/de/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.6/es/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.6/fr/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.6/it/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.6/ja/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.6/ko/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.6/ru/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/system.text.regularexpressions.4.1.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/system.text.regularexpressions.4.1.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.1.0/system.text.regularexpressions.nuspec +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/lib/net463/System.Text.RegularExpressions.dll +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/lib/netcore50/System.Text.RegularExpressions.dll +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/lib/netstandard1.6/System.Text.RegularExpressions.dll +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/net463/System.Text.RegularExpressions.dll +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netcore50/System.Text.RegularExpressions.dll +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netcore50/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netcore50/de/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netcore50/es/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netcore50/fr/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netcore50/it/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netcore50/ja/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netcore50/ko/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netcore50/ru/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netcore50/zh-hans/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netcore50/zh-hant/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netcoreapp1.1/System.Text.RegularExpressions.dll +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.0/System.Text.RegularExpressions.dll +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.0/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.0/de/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.0/es/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.0/fr/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.0/it/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.0/ja/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.0/ko/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.0/ru/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.3/System.Text.RegularExpressions.dll +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.3/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.3/de/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.3/es/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.3/fr/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.3/it/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.3/ja/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.3/ko/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.3/ru/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.6/System.Text.RegularExpressions.dll +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.6/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.6/de/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.6/es/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.6/fr/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.6/it/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.6/ja/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.6/ko/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.6/ru/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/system.text.regularexpressions.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/system.text.regularexpressions.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.text.regularexpressions/4.3.0/system.text.regularexpressions.nuspec +dotnet/sdk/NuGetFallbackFolder/system.threading.overlapped/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.overlapped/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.overlapped/4.0.1/lib/net46/System.Threading.Overlapped.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.overlapped/4.0.1/ref/net46/System.Threading.Overlapped.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.overlapped/4.0.1/ref/netstandard1.3/System.Threading.Overlapped.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.overlapped/4.0.1/ref/netstandard1.3/System.Threading.Overlapped.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.overlapped/4.0.1/ref/netstandard1.3/de/System.Threading.Overlapped.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.overlapped/4.0.1/ref/netstandard1.3/es/System.Threading.Overlapped.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.overlapped/4.0.1/ref/netstandard1.3/fr/System.Threading.Overlapped.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.overlapped/4.0.1/ref/netstandard1.3/it/System.Threading.Overlapped.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.overlapped/4.0.1/ref/netstandard1.3/ja/System.Threading.Overlapped.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.overlapped/4.0.1/ref/netstandard1.3/ko/System.Threading.Overlapped.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.overlapped/4.0.1/ref/netstandard1.3/ru/System.Threading.Overlapped.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.overlapped/4.0.1/ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.overlapped/4.0.1/ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.overlapped/4.0.1/runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.overlapped/4.0.1/runtimes/win/lib/net46/System.Threading.Overlapped.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.overlapped/4.0.1/runtimes/win/lib/netcore50/System.Threading.Overlapped.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.overlapped/4.0.1/runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.overlapped/4.0.1/system.threading.overlapped.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.threading.overlapped/4.0.1/system.threading.overlapped.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.threading.overlapped/4.0.1/system.threading.overlapped.nuspec +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.dataflow/4.6.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.dataflow/4.6.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.dataflow/4.6.0/lib/netstandard1.0/System.Threading.Tasks.Dataflow.XML +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.dataflow/4.6.0/lib/netstandard1.0/System.Threading.Tasks.Dataflow.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.dataflow/4.6.0/lib/netstandard1.1/System.Threading.Tasks.Dataflow.XML +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.dataflow/4.6.0/lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.dataflow/4.6.0/system.threading.tasks.dataflow.4.6.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.dataflow/4.6.0/system.threading.tasks.dataflow.4.6.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.dataflow/4.6.0/system.threading.tasks.dataflow.nuspec +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.0.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.0.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.0.0/lib/netstandard1.0/System.Threading.Tasks.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.0.0/lib/netstandard1.0/System.Threading.Tasks.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.0.0/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.0.0/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.0.0/system.threading.tasks.extensions.4.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.0.0/system.threading.tasks.extensions.4.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.0.0/system.threading.tasks.extensions.nuspec +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.3.0/lib/netstandard1.0/System.Threading.Tasks.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.3.0/lib/netstandard1.0/System.Threading.Tasks.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.3.0/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.3.0/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.3.0/system.threading.tasks.extensions.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.3.0/system.threading.tasks.extensions.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.3.0/system.threading.tasks.extensions.nuspec +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.4.0/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.4.0/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.4.0/lib/netcoreapp2.0/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.4.0/lib/netstandard1.0/System.Threading.Tasks.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.4.0/lib/netstandard1.0/System.Threading.Tasks.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.4.0/lib/netstandard2.0/System.Threading.Tasks.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.4.0/lib/netstandard2.0/System.Threading.Tasks.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.4.0/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.4.0/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.4.0/ref/netcoreapp2.0/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.4.0/system.threading.tasks.extensions.4.4.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.4.0/system.threading.tasks.extensions.4.4.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.4.0/system.threading.tasks.extensions.nuspec +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.4.0/useSharedDesignerContext.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.extensions/4.4.0/version.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/lib/netcore50/System.Threading.Tasks.Parallel.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/lib/netstandard1.3/System.Threading.Tasks.Parallel.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/lib/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/netcore50/System.Threading.Tasks.Parallel.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/netcore50/System.Threading.Tasks.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/netcore50/de/System.Threading.Tasks.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/netcore50/es/System.Threading.Tasks.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/netcore50/fr/System.Threading.Tasks.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/netcore50/it/System.Threading.Tasks.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/netcore50/ja/System.Threading.Tasks.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/netcore50/ko/System.Threading.Tasks.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/netcore50/ru/System.Threading.Tasks.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/netstandard1.1/System.Threading.Tasks.Parallel.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/netstandard1.1/System.Threading.Tasks.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/portable-net45+win8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/system.threading.tasks.parallel.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/system.threading.tasks.parallel.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks.parallel/4.3.0/system.threading.tasks.parallel.nuspec +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netcore50/System.Threading.Tasks.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netcore50/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netcore50/de/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netcore50/es/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netcore50/fr/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netcore50/it/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netcore50/ja/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netcore50/ko/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netcore50/ru/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netcore50/zh-hans/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netcore50/zh-hant/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netstandard1.0/System.Threading.Tasks.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netstandard1.0/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netstandard1.0/de/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netstandard1.0/es/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netstandard1.0/fr/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netstandard1.0/it/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netstandard1.0/ja/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netstandard1.0/ko/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netstandard1.0/ru/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netstandard1.3/System.Threading.Tasks.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netstandard1.3/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netstandard1.3/de/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netstandard1.3/es/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netstandard1.3/fr/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netstandard1.3/it/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netstandard1.3/ja/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netstandard1.3/ko/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netstandard1.3/ru/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/system.threading.tasks.4.0.11.nupkg +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/system.threading.tasks.4.0.11.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.0.11/system.threading.tasks.nuspec +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netcore50/System.Threading.Tasks.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netcore50/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netcore50/de/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netcore50/es/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netcore50/fr/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netcore50/it/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netcore50/ja/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netcore50/ko/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netcore50/ru/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netcore50/zh-hans/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netcore50/zh-hant/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netstandard1.0/System.Threading.Tasks.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netstandard1.0/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netstandard1.0/de/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netstandard1.0/es/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netstandard1.0/fr/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netstandard1.0/it/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netstandard1.0/ja/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netstandard1.0/ko/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netstandard1.0/ru/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netstandard1.3/System.Threading.Tasks.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netstandard1.3/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netstandard1.3/de/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netstandard1.3/es/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netstandard1.3/fr/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netstandard1.3/it/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netstandard1.3/ja/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netstandard1.3/ko/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netstandard1.3/ru/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/system.threading.tasks.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/system.threading.tasks.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.threading.tasks/4.3.0/system.threading.tasks.nuspec +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/lib/net46/System.Threading.Thread.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/lib/netcore50/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/lib/netstandard1.3/System.Threading.Thread.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/ref/net46/System.Threading.Thread.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/ref/netstandard1.3/System.Threading.Thread.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/ref/netstandard1.3/System.Threading.Thread.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/ref/netstandard1.3/de/System.Threading.Thread.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/ref/netstandard1.3/es/System.Threading.Thread.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/ref/netstandard1.3/fr/System.Threading.Thread.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/ref/netstandard1.3/it/System.Threading.Thread.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/ref/netstandard1.3/ja/System.Threading.Thread.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/ref/netstandard1.3/ko/System.Threading.Thread.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/ref/netstandard1.3/ru/System.Threading.Thread.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/ref/netstandard1.3/zh-hans/System.Threading.Thread.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/ref/netstandard1.3/zh-hant/System.Threading.Thread.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/system.threading.thread.4.0.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/system.threading.thread.4.0.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.0.0/system.threading.thread.nuspec +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/lib/net46/System.Threading.Thread.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/lib/netcore50/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/lib/netstandard1.3/System.Threading.Thread.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/ref/net46/System.Threading.Thread.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/ref/netstandard1.3/System.Threading.Thread.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/ref/netstandard1.3/System.Threading.Thread.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/ref/netstandard1.3/de/System.Threading.Thread.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/ref/netstandard1.3/es/System.Threading.Thread.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/ref/netstandard1.3/fr/System.Threading.Thread.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/ref/netstandard1.3/it/System.Threading.Thread.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/ref/netstandard1.3/ja/System.Threading.Thread.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/ref/netstandard1.3/ko/System.Threading.Thread.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/ref/netstandard1.3/ru/System.Threading.Thread.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/ref/netstandard1.3/zh-hans/System.Threading.Thread.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/ref/netstandard1.3/zh-hant/System.Threading.Thread.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/system.threading.thread.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/system.threading.thread.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.threading.thread/4.3.0/system.threading.thread.nuspec +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/lib/net46/System.Threading.ThreadPool.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/lib/netcore50/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/lib/netstandard1.3/System.Threading.ThreadPool.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/ref/net46/System.Threading.ThreadPool.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/ref/netstandard1.3/System.Threading.ThreadPool.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/ref/netstandard1.3/System.Threading.ThreadPool.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/ref/netstandard1.3/de/System.Threading.ThreadPool.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/ref/netstandard1.3/es/System.Threading.ThreadPool.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/ref/netstandard1.3/fr/System.Threading.ThreadPool.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/ref/netstandard1.3/it/System.Threading.ThreadPool.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/ref/netstandard1.3/ja/System.Threading.ThreadPool.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/ref/netstandard1.3/ko/System.Threading.ThreadPool.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/ref/netstandard1.3/ru/System.Threading.ThreadPool.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/system.threading.threadpool.4.0.10.nupkg +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/system.threading.threadpool.4.0.10.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.0.10/system.threading.threadpool.nuspec +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/lib/net46/System.Threading.ThreadPool.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/lib/netcore50/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/lib/netstandard1.3/System.Threading.ThreadPool.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/ref/net46/System.Threading.ThreadPool.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/ref/netstandard1.3/System.Threading.ThreadPool.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/ref/netstandard1.3/System.Threading.ThreadPool.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/ref/netstandard1.3/de/System.Threading.ThreadPool.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/ref/netstandard1.3/es/System.Threading.ThreadPool.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/ref/netstandard1.3/fr/System.Threading.ThreadPool.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/ref/netstandard1.3/it/System.Threading.ThreadPool.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/ref/netstandard1.3/ja/System.Threading.ThreadPool.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/ref/netstandard1.3/ko/System.Threading.ThreadPool.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/ref/netstandard1.3/ru/System.Threading.ThreadPool.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/system.threading.threadpool.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/system.threading.threadpool.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.threading.threadpool/4.3.0/system.threading.threadpool.nuspec +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/lib/net451/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/lib/portable-net451+win81+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/lib/win81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/net451/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/netcore50/System.Threading.Timer.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/netcore50/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/netcore50/de/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/netcore50/es/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/netcore50/fr/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/netcore50/it/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/netcore50/ja/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/netcore50/ko/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/netcore50/ru/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/netcore50/zh-hans/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/netcore50/zh-hant/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/netstandard1.2/System.Threading.Timer.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/netstandard1.2/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/netstandard1.2/de/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/netstandard1.2/es/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/netstandard1.2/fr/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/netstandard1.2/it/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/netstandard1.2/ja/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/netstandard1.2/ko/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/netstandard1.2/ru/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/netstandard1.2/zh-hans/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/netstandard1.2/zh-hant/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/portable-net451+win81+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/win81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/system.threading.timer.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/system.threading.timer.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.0.1/system.threading.timer.nuspec +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/lib/net451/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/lib/portable-net451+win81+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/lib/win81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/net451/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/netcore50/System.Threading.Timer.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/netcore50/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/netcore50/de/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/netcore50/es/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/netcore50/fr/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/netcore50/it/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/netcore50/ja/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/netcore50/ko/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/netcore50/ru/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/netcore50/zh-hans/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/netcore50/zh-hant/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/netstandard1.2/System.Threading.Timer.dll +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/netstandard1.2/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/netstandard1.2/de/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/netstandard1.2/es/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/netstandard1.2/fr/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/netstandard1.2/it/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/netstandard1.2/ja/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/netstandard1.2/ko/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/netstandard1.2/ru/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/netstandard1.2/zh-hans/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/netstandard1.2/zh-hant/System.Threading.Timer.xml +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/portable-net451+win81+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/win81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/system.threading.timer.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/system.threading.timer.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.threading.timer/4.3.0/system.threading.timer.nuspec +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/lib/netcore50/System.Threading.dll +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/lib/netstandard1.3/System.Threading.dll +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netcore50/System.Threading.dll +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netcore50/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netcore50/de/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netcore50/es/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netcore50/fr/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netcore50/it/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netcore50/ja/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netcore50/ko/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netcore50/ru/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netcore50/zh-hans/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netcore50/zh-hant/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netstandard1.0/System.Threading.dll +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netstandard1.0/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netstandard1.0/de/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netstandard1.0/es/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netstandard1.0/fr/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netstandard1.0/it/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netstandard1.0/ja/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netstandard1.0/ko/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netstandard1.0/ru/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netstandard1.0/zh-hans/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netstandard1.0/zh-hant/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netstandard1.3/System.Threading.dll +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netstandard1.3/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netstandard1.3/de/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netstandard1.3/es/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netstandard1.3/fr/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netstandard1.3/it/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netstandard1.3/ja/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netstandard1.3/ko/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netstandard1.3/ru/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netstandard1.3/zh-hans/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/netstandard1.3/zh-hant/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/runtimes/aot/lib/netcore50/System.Threading.dll +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/system.threading.4.0.11.nupkg +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/system.threading.4.0.11.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.threading/4.0.11/system.threading.nuspec +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/lib/netcore50/System.Threading.dll +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/lib/netstandard1.3/System.Threading.dll +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netcore50/System.Threading.dll +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netcore50/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netcore50/de/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netcore50/es/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netcore50/fr/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netcore50/it/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netcore50/ja/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netcore50/ko/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netcore50/ru/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netcore50/zh-hans/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netcore50/zh-hant/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netstandard1.0/System.Threading.dll +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netstandard1.0/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netstandard1.0/de/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netstandard1.0/es/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netstandard1.0/fr/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netstandard1.0/it/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netstandard1.0/ja/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netstandard1.0/ko/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netstandard1.0/ru/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netstandard1.0/zh-hans/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netstandard1.0/zh-hant/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netstandard1.3/System.Threading.dll +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netstandard1.3/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netstandard1.3/de/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netstandard1.3/es/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netstandard1.3/fr/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netstandard1.3/it/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netstandard1.3/ja/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netstandard1.3/ko/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netstandard1.3/ru/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netstandard1.3/zh-hans/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/netstandard1.3/zh-hant/System.Threading.xml +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/runtimes/aot/lib/netcore50/System.Threading.dll +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/system.threading.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/system.threading.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.threading/4.3.0/system.threading.nuspec +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.3.0/lib/netstandard1.0/.xml +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.3.0/lib/netstandard1.0/System.ValueTuple.dll +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.3.0/lib/portable-net40+sl4+win8+wp8/.xml +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.3.0/lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.3.0/system.valuetuple.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.3.0/system.valuetuple.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.3.0/system.valuetuple.nuspec +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/LICENSE.TXT +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/THIRD-PARTY-NOTICES.TXT +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/lib/net461/System.ValueTuple.dll +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/lib/net461/System.ValueTuple.xml +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/lib/net47/System.ValueTuple.dll +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/lib/net47/System.ValueTuple.xml +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/lib/netcoreapp2.0/_._ +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/lib/netstandard1.0/System.ValueTuple.dll +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/lib/netstandard1.0/System.ValueTuple.xml +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/lib/netstandard2.0/_._ +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/ref/net461/System.ValueTuple.dll +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/ref/net461/System.ValueTuple.xml +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/ref/net47/System.ValueTuple.dll +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/ref/net47/System.ValueTuple.xml +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/ref/netcoreapp2.0/_._ +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/ref/netstandard2.0/_._ +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/ref/portable-net40+sl4+win8+wp8/System.ValueTuple.xml +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/system.valuetuple.4.4.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/system.valuetuple.4.4.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/system.valuetuple.nuspec +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/useSharedDesignerContext.txt +dotnet/sdk/NuGetFallbackFolder/system.valuetuple/4.4.0/version.txt +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/lib/netcore50/System.Xml.ReaderWriter.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/lib/netstandard1.3/System.Xml.ReaderWriter.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netcore50/System.Xml.ReaderWriter.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netcore50/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netcore50/de/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netcore50/es/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netcore50/fr/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netcore50/it/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netcore50/ja/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netcore50/ko/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netcore50/ru/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netstandard1.0/System.Xml.ReaderWriter.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netstandard1.0/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netstandard1.0/de/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netstandard1.0/es/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netstandard1.0/it/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netstandard1.3/System.Xml.ReaderWriter.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netstandard1.3/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netstandard1.3/de/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netstandard1.3/es/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netstandard1.3/it/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/system.xml.readerwriter.4.0.11.nupkg +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/system.xml.readerwriter.4.0.11.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.0.11/system.xml.readerwriter.nuspec +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/lib/net46/System.Xml.ReaderWriter.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/lib/netcore50/System.Xml.ReaderWriter.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/lib/netstandard1.3/System.Xml.ReaderWriter.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/net46/System.Xml.ReaderWriter.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netcore50/System.Xml.ReaderWriter.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netcore50/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netcore50/de/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netcore50/es/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netcore50/fr/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netcore50/it/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netcore50/ja/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netcore50/ko/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netcore50/ru/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netstandard1.0/System.Xml.ReaderWriter.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netstandard1.0/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netstandard1.0/de/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netstandard1.0/es/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netstandard1.0/it/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netstandard1.3/System.Xml.ReaderWriter.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netstandard1.3/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netstandard1.3/de/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netstandard1.3/es/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netstandard1.3/it/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/system.xml.readerwriter.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/system.xml.readerwriter.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.xml.readerwriter/4.3.0/system.xml.readerwriter.nuspec +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/lib/netcore50/System.Xml.XDocument.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/lib/netstandard1.3/System.Xml.XDocument.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netcore50/System.Xml.XDocument.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netcore50/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netcore50/de/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netcore50/es/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netcore50/fr/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netcore50/it/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netcore50/ja/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netcore50/ko/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netcore50/ru/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netcore50/zh-hans/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netcore50/zh-hant/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netstandard1.0/System.Xml.XDocument.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netstandard1.0/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netstandard1.0/de/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netstandard1.0/es/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netstandard1.0/fr/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netstandard1.0/it/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netstandard1.0/ja/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netstandard1.0/ko/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netstandard1.0/ru/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netstandard1.3/System.Xml.XDocument.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netstandard1.3/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netstandard1.3/de/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netstandard1.3/es/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netstandard1.3/fr/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netstandard1.3/it/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netstandard1.3/ja/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netstandard1.3/ko/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netstandard1.3/ru/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/system.xml.xdocument.4.0.11.nupkg +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/system.xml.xdocument.4.0.11.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.0.11/system.xml.xdocument.nuspec +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/lib/netcore50/System.Xml.XDocument.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/lib/netstandard1.3/System.Xml.XDocument.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netcore50/System.Xml.XDocument.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netcore50/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netcore50/de/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netcore50/es/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netcore50/fr/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netcore50/it/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netcore50/ja/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netcore50/ko/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netcore50/ru/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netcore50/zh-hans/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netcore50/zh-hant/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netstandard1.0/System.Xml.XDocument.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netstandard1.0/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netstandard1.0/de/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netstandard1.0/es/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netstandard1.0/fr/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netstandard1.0/it/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netstandard1.0/ja/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netstandard1.0/ko/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netstandard1.0/ru/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netstandard1.3/System.Xml.XDocument.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netstandard1.3/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netstandard1.3/de/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netstandard1.3/es/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netstandard1.3/fr/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netstandard1.3/it/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netstandard1.3/ja/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netstandard1.3/ko/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netstandard1.3/ru/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/system.xml.xdocument.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/system.xml.xdocument.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.xml.xdocument/4.3.0/system.xml.xdocument.nuspec +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/lib/net46/System.Xml.XmlDocument.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/lib/netstandard1.3/System.Xml.XmlDocument.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/ref/net46/System.Xml.XmlDocument.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/ref/netstandard1.3/System.Xml.XmlDocument.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/ref/netstandard1.3/System.Xml.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/ref/netstandard1.3/de/System.Xml.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/ref/netstandard1.3/es/System.Xml.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/ref/netstandard1.3/fr/System.Xml.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/ref/netstandard1.3/it/System.Xml.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/ref/netstandard1.3/ja/System.Xml.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/ref/netstandard1.3/ko/System.Xml.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/ref/netstandard1.3/ru/System.Xml.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/system.xml.xmldocument.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/system.xml.xmldocument.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.0.1/system.xml.xmldocument.nuspec +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/lib/net46/System.Xml.XmlDocument.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/lib/netstandard1.3/System.Xml.XmlDocument.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/ref/net46/System.Xml.XmlDocument.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/ref/netstandard1.3/System.Xml.XmlDocument.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/ref/netstandard1.3/System.Xml.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/ref/netstandard1.3/de/System.Xml.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/ref/netstandard1.3/es/System.Xml.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/ref/netstandard1.3/fr/System.Xml.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/ref/netstandard1.3/it/System.Xml.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/ref/netstandard1.3/ja/System.Xml.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/ref/netstandard1.3/ko/System.Xml.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/ref/netstandard1.3/ru/System.Xml.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/system.xml.xmldocument.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/system.xml.xmldocument.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.xml.xmldocument/4.3.0/system.xml.xmldocument.nuspec +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/lib/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/lib/netcore50/System.Xml.XmlSerializer.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/lib/netstandard1.3/System.Xml.XmlSerializer.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/lib/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/lib/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/lib/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/lib/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/net45/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netcore50/System.Xml.XmlSerializer.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netcore50/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netcore50/de/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netcore50/es/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netcore50/fr/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netcore50/it/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netcore50/ja/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netcore50/ko/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netcore50/ru/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netstandard1.0/System.Xml.XmlSerializer.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netstandard1.0/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netstandard1.0/de/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netstandard1.0/es/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netstandard1.0/it/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netstandard1.3/System.Xml.XmlSerializer.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netstandard1.3/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netstandard1.3/de/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netstandard1.3/es/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netstandard1.3/it/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/portable-net45+win8+wp8+wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/win8/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/wp80/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/wpa81/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/system.xml.xmlserializer.4.0.11.nupkg +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/system.xml.xmlserializer.4.0.11.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.xml.xmlserializer/4.0.11/system.xml.xmlserializer.nuspec +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/lib/net46/System.Xml.XPath.XDocument.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/lib/netstandard1.3/System.Xml.XPath.XDocument.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/ref/net46/System.Xml.XPath.XDocument.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/ref/netstandard1.3/System.Xml.XPath.XDocument.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/ref/netstandard1.3/System.Xml.XPath.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/ref/netstandard1.3/de/System.Xml.XPath.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/ref/netstandard1.3/es/System.Xml.XPath.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/ref/netstandard1.3/fr/System.Xml.XPath.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/ref/netstandard1.3/it/System.Xml.XPath.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/ref/netstandard1.3/ja/System.Xml.XPath.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/ref/netstandard1.3/ko/System.Xml.XPath.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/ref/netstandard1.3/ru/System.Xml.XPath.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/ref/netstandard1.3/zh-hans/System.Xml.XPath.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/ref/netstandard1.3/zh-hant/System.Xml.XPath.XDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/system.xml.xpath.xdocument.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/system.xml.xpath.xdocument.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xdocument/4.3.0/system.xml.xpath.xdocument.nuspec +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/system.xml.xpath.xmldocument.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/system.xml.xpath.xmldocument.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath.xmldocument/4.0.1/system.xml.xpath.xmldocument.nuspec +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/lib/net46/System.Xml.XPath.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/lib/netstandard1.3/System.Xml.XPath.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/ref/net46/System.Xml.XPath.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/ref/netstandard1.3/System.Xml.XPath.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/ref/netstandard1.3/System.Xml.XPath.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/ref/netstandard1.3/de/System.Xml.XPath.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/ref/netstandard1.3/es/System.Xml.XPath.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/ref/netstandard1.3/fr/System.Xml.XPath.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/ref/netstandard1.3/it/System.Xml.XPath.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/ref/netstandard1.3/ja/System.Xml.XPath.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/ref/netstandard1.3/ko/System.Xml.XPath.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/ref/netstandard1.3/ru/System.Xml.XPath.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/ref/netstandard1.3/zh-hans/System.Xml.XPath.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/ref/netstandard1.3/zh-hant/System.Xml.XPath.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/system.xml.xpath.4.0.1.nupkg +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/system.xml.xpath.4.0.1.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.0.1/system.xml.xpath.nuspec +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/ThirdPartyNotices.txt +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/dotnet_library_license.txt +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/lib/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/lib/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/lib/net46/System.Xml.XPath.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/lib/netstandard1.3/System.Xml.XPath.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/lib/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/lib/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/lib/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/lib/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/ref/MonoAndroid10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/ref/MonoTouch10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/ref/net46/System.Xml.XPath.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/ref/netstandard1.3/System.Xml.XPath.dll +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/ref/netstandard1.3/System.Xml.XPath.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/ref/netstandard1.3/de/System.Xml.XPath.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/ref/netstandard1.3/es/System.Xml.XPath.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/ref/netstandard1.3/fr/System.Xml.XPath.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/ref/netstandard1.3/it/System.Xml.XPath.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/ref/netstandard1.3/ja/System.Xml.XPath.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/ref/netstandard1.3/ko/System.Xml.XPath.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/ref/netstandard1.3/ru/System.Xml.XPath.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/ref/netstandard1.3/zh-hans/System.Xml.XPath.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/ref/netstandard1.3/zh-hant/System.Xml.XPath.xml +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/ref/xamarinios10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/ref/xamarinmac20/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/ref/xamarintvos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/ref/xamarinwatchos10/_._ +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/system.xml.xpath.4.3.0.nupkg +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/system.xml.xpath.4.3.0.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/system.xml.xpath/4.3.0/system.xml.xpath.nuspec +dotnet/sdk/NuGetFallbackFolder/windowsazure.storage/8.1.4/lib/net45/Microsoft.WindowsAzure.Storage.dll +dotnet/sdk/NuGetFallbackFolder/windowsazure.storage/8.1.4/lib/net45/Microsoft.WindowsAzure.Storage.pdb +dotnet/sdk/NuGetFallbackFolder/windowsazure.storage/8.1.4/lib/net45/Microsoft.WindowsAzure.Storage.xml +dotnet/sdk/NuGetFallbackFolder/windowsazure.storage/8.1.4/lib/netstandard1.0/Microsoft.WindowsAzure.Storage.dll +dotnet/sdk/NuGetFallbackFolder/windowsazure.storage/8.1.4/lib/netstandard1.0/Microsoft.WindowsAzure.Storage.pdb +dotnet/sdk/NuGetFallbackFolder/windowsazure.storage/8.1.4/lib/netstandard1.3/Microsoft.WindowsAzure.Storage.dll +dotnet/sdk/NuGetFallbackFolder/windowsazure.storage/8.1.4/lib/netstandard1.3/Microsoft.WindowsAzure.Storage.pdb +dotnet/sdk/NuGetFallbackFolder/windowsazure.storage/8.1.4/lib/win8/Microsoft.WindowsAzure.Storage.dll +dotnet/sdk/NuGetFallbackFolder/windowsazure.storage/8.1.4/lib/win8/Microsoft.WindowsAzure.Storage.pdb +dotnet/sdk/NuGetFallbackFolder/windowsazure.storage/8.1.4/lib/wp8/Microsoft.WindowsAzure.Storage.dll +dotnet/sdk/NuGetFallbackFolder/windowsazure.storage/8.1.4/lib/wp8/Microsoft.WindowsAzure.Storage.pdb +dotnet/sdk/NuGetFallbackFolder/windowsazure.storage/8.1.4/lib/wpa/Microsoft.WindowsAzure.Storage.dll +dotnet/sdk/NuGetFallbackFolder/windowsazure.storage/8.1.4/lib/wpa/Microsoft.WindowsAzure.Storage.pdb +dotnet/sdk/NuGetFallbackFolder/windowsazure.storage/8.1.4/windowsazure.storage.8.1.4.nupkg +dotnet/sdk/NuGetFallbackFolder/windowsazure.storage/8.1.4/windowsazure.storage.8.1.4.nupkg.sha512 +dotnet/sdk/NuGetFallbackFolder/windowsazure.storage/8.1.4/windowsazure.storage.nuspec +dotnet/store/x64/netcoreapp2.0/libuv/1.10.0/runtimes/linux-x64/native/libuv.so +dotnet/store/x64/netcoreapp2.0/microsoft.applicationinsights.aspnetcore/2.1.1/lib/netstandard1.6/Microsoft.ApplicationInsights.AspNetCore.dll +dotnet/store/x64/netcoreapp2.0/microsoft.applicationinsights.dependencycollector/2.4.1/lib/netstandard1.6/Microsoft.AI.DependencyCollector.dll +dotnet/store/x64/netcoreapp2.0/microsoft.applicationinsights/2.4.0/lib/netstandard1.3/Microsoft.ApplicationInsights.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.antiforgery/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.antiforgery/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.applicationinsights.hostingstartup/2.0.0/lib/netcoreapp2.0/Microsoft.AspNetCore.ApplicationInsights.HostingStartup.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.applicationinsights.hostingstartup/2.0.1/lib/netcoreapp2.0/Microsoft.AspNetCore.ApplicationInsights.HostingStartup.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.authentication.abstractions/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.authentication.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.authentication.cookies/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Cookies.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.authentication.cookies/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Cookies.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.authentication.core/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.authentication.core/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.authentication.facebook/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Facebook.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.authentication.facebook/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Facebook.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.authentication.google/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Google.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.authentication.google/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Google.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.authentication.jwtbearer/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.authentication.jwtbearer/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.authentication.microsoftaccount/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.authentication.microsoftaccount/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.authentication.oauth/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OAuth.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.authentication.oauth/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OAuth.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.authentication.openidconnect/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.authentication.openidconnect/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.authentication.twitter/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Twitter.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.authentication.twitter/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Twitter.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.authentication/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.authentication/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authentication.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.authorization.policy/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.authorization.policy/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.authorization/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.authorization/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.azureappservices.hostingstartup/2.0.0/lib/netcoreapp2.0/Microsoft.AspNetCore.AzureAppServices.HostingStartup.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.azureappservices.hostingstartup/2.0.1/lib/netcoreapp2.0/Microsoft.AspNetCore.AzureAppServices.HostingStartup.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.azureappservicesintegration/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.AzureAppServicesIntegration.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.azureappservicesintegration/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.AzureAppServicesIntegration.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.cookiepolicy/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.CookiePolicy.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.cookiepolicy/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.CookiePolicy.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.cors/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.cors/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.cryptography.internal/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.cryptography.internal/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.cryptography.keyderivation/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.cryptography.keyderivation/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.dataprotection.abstractions/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.dataprotection.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.dataprotection.azurestorage/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.AzureStorage.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.dataprotection.azurestorage/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.AzureStorage.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.dataprotection.extensions/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Extensions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.dataprotection.extensions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Extensions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.dataprotection/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.dataprotection/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.diagnostics.abstractions/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.diagnostics.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.diagnostics.entityframeworkcore/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.diagnostics.entityframeworkcore/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.diagnostics/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.diagnostics/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.hosting.abstractions/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.hosting.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.hosting.server.abstractions/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.hosting.server.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.hosting/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.hosting/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.html.abstractions/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.http.abstractions/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.http.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.http.extensions/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.http.extensions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.http.features/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.http.features/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.http/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Http.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.http/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Http.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.httpoverrides/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.httpoverrides/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.identity.entityframeworkcore/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.identity.entityframeworkcore/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.identity/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Identity.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.identity/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Identity.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.jsonpatch/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.localization.routing/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Localization.Routing.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.localization.routing/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Localization.Routing.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.localization/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.localization/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.middlewareanalysis/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.MiddlewareAnalysis.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.middlewareanalysis/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.MiddlewareAnalysis.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc.abstractions/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc.apiexplorer/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc.apiexplorer/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc.core/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc.core/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc.cors/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc.cors/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc.dataannotations/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc.dataannotations/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc.formatters.json/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc.formatters.json/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc.formatters.xml/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc.formatters.xml/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc.localization/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc.localization/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc.razor.extensions/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc.razor.extensions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc.razor/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc.razor/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc.razorpages/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc.razorpages/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc.taghelpers/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc.taghelpers/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc.viewfeatures/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc.viewfeatures/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.mvc/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.nodeservices/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.NodeServices.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.nodeservices/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.NodeServices.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.owin/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Owin.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.owin/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Owin.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.razor.language/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.razor.language/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.razor.runtime/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.razor.runtime/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.razor/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.razor/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.responsecaching.abstractions/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.responsecaching.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.responsecaching/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.responsecaching/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.responsecompression/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.ResponseCompression.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.responsecompression/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.ResponseCompression.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.rewrite/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Rewrite.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.rewrite/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Rewrite.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.routing.abstractions/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.routing.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.routing/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.routing/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.server.httpsys/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Server.HttpSys.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.server.httpsys/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Server.HttpSys.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.server.iisintegration/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.server.iisintegration/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.server.kestrel.core/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Core.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.server.kestrel.core/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Core.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.server.kestrel.https/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Https.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.server.kestrel.https/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Https.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.server.kestrel.transport.abstractions/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.server.kestrel.transport.abstractions/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.server.kestrel.transport.libuv/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.server.kestrel.transport.libuv/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.server.kestrel/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.server.kestrel/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.session/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.Session.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.session/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.Session.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.spaservices/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.spaservices/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.staticfiles/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.StaticFiles.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.staticfiles/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.StaticFiles.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.websockets/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.websockets/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.webutilities/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore.webutilities/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore/2.0.0/lib/netstandard2.0/Microsoft.AspNetCore.dll +dotnet/store/x64/netcoreapp2.0/microsoft.aspnetcore/2.0.1/lib/netstandard2.0/Microsoft.AspNetCore.dll +dotnet/store/x64/netcoreapp2.0/microsoft.azure.keyvault.webkey/2.0.7/lib/netstandard1.4/Microsoft.Azure.KeyVault.WebKey.dll +dotnet/store/x64/netcoreapp2.0/microsoft.azure.keyvault/2.3.2/lib/netstandard1.4/Microsoft.Azure.KeyVault.dll +dotnet/store/x64/netcoreapp2.0/microsoft.codeanalysis.common/2.3.1/lib/netstandard1.3/Microsoft.CodeAnalysis.dll +dotnet/store/x64/netcoreapp2.0/microsoft.codeanalysis.csharp/2.3.1/lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll +dotnet/store/x64/netcoreapp2.0/microsoft.codeanalysis.razor/2.0.0/lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll +dotnet/store/x64/netcoreapp2.0/microsoft.codeanalysis.razor/2.0.1/lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll +dotnet/store/x64/netcoreapp2.0/microsoft.data.edm/5.8.2/lib/netstandard1.1/Microsoft.Data.Edm.dll +dotnet/store/x64/netcoreapp2.0/microsoft.data.odata/5.8.2/lib/netstandard1.1/Microsoft.Data.OData.dll +dotnet/store/x64/netcoreapp2.0/microsoft.data.sqlite.core/2.0.0/lib/netstandard2.0/Microsoft.Data.Sqlite.dll +dotnet/store/x64/netcoreapp2.0/microsoft.dotnet.platformabstractions/2.0.0/lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.dotnet.platformabstractions/2.0.3/lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.entityframeworkcore.design/2.0.0/lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll +dotnet/store/x64/netcoreapp2.0/microsoft.entityframeworkcore.design/2.0.1/lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll +dotnet/store/x64/netcoreapp2.0/microsoft.entityframeworkcore.inmemory/2.0.0/lib/netstandard2.0/Microsoft.EntityFrameworkCore.InMemory.dll +dotnet/store/x64/netcoreapp2.0/microsoft.entityframeworkcore.inmemory/2.0.1/lib/netstandard2.0/Microsoft.EntityFrameworkCore.InMemory.dll +dotnet/store/x64/netcoreapp2.0/microsoft.entityframeworkcore.relational/2.0.0/lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll +dotnet/store/x64/netcoreapp2.0/microsoft.entityframeworkcore.relational/2.0.1/lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll +dotnet/store/x64/netcoreapp2.0/microsoft.entityframeworkcore.sqlite.core/2.0.0/lib/netstandard2.0/Microsoft.EntityFrameworkCore.Sqlite.dll +dotnet/store/x64/netcoreapp2.0/microsoft.entityframeworkcore.sqlite.core/2.0.1/lib/netstandard2.0/Microsoft.EntityFrameworkCore.Sqlite.dll +dotnet/store/x64/netcoreapp2.0/microsoft.entityframeworkcore.sqlserver/2.0.0/lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll +dotnet/store/x64/netcoreapp2.0/microsoft.entityframeworkcore.sqlserver/2.0.1/lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll +dotnet/store/x64/netcoreapp2.0/microsoft.entityframeworkcore/2.0.0/lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll +dotnet/store/x64/netcoreapp2.0/microsoft.entityframeworkcore/2.0.1/lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.caching.abstractions/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.caching.memory/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.caching.redis/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Caching.Redis.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.caching.sqlserver/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.configuration.abstractions/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.configuration.azurekeyvault/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.AzureKeyVault.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.configuration.binder/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.configuration.commandline/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.configuration.environmentvariables/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.configuration.fileextensions/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.configuration.ini/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Ini.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.configuration.json/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.configuration.usersecrets/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.configuration.xml/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Xml.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.configuration/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.dependencyinjection.abstractions/2.0.0/lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.dependencyinjection/2.0.0/lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.dependencymodel/2.0.0/lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.dependencymodel/2.0.3/lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.diagnosticadapter/2.0.0/lib/netcoreapp2.0/Microsoft.Extensions.DiagnosticAdapter.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.fileproviders.abstractions/2.0.0/lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.fileproviders.composite/2.0.0/lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.fileproviders.embedded/2.0.0/lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.fileproviders.physical/2.0.0/lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.filesystemglobbing/2.0.0/lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.hosting.abstractions/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.hosting.abstractions/2.0.1/lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.identity.core/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.identity.core/2.0.1/lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.identity.stores/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.identity.stores/2.0.1/lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.localization.abstractions/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.localization.abstractions/2.0.1/lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.localization/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Localization.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.localization/2.0.1/lib/netstandard2.0/Microsoft.Extensions.Localization.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.logging.abstractions/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.logging.azureappservices/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.AzureAppServices.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.logging.configuration/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.logging.console/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.logging.debug/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.logging.eventsource/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.logging.tracesource/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.TraceSource.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.logging/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.objectpool/2.0.0/lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.options.configurationextensions/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.options/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Options.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.platformabstractions/1.1.0/lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.primitives/2.0.0/lib/netstandard2.0/Microsoft.Extensions.Primitives.dll +dotnet/store/x64/netcoreapp2.0/microsoft.extensions.webencoders/2.0.0/lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll +dotnet/store/x64/netcoreapp2.0/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll +dotnet/store/x64/netcoreapp2.0/microsoft.identitymodel.clients.activedirectory/3.14.1/lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.dll +dotnet/store/x64/netcoreapp2.0/microsoft.identitymodel.logging/1.1.4/lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll +dotnet/store/x64/netcoreapp2.0/microsoft.identitymodel.protocols.openidconnect/2.1.4/lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +dotnet/store/x64/netcoreapp2.0/microsoft.identitymodel.protocols/2.1.4/lib/netstandard1.4/Microsoft.IdentityModel.Protocols.dll +dotnet/store/x64/netcoreapp2.0/microsoft.identitymodel.tokens/5.1.4/lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll +dotnet/store/x64/netcoreapp2.0/microsoft.net.http.headers/2.0.0/lib/netstandard2.0/Microsoft.Net.Http.Headers.dll +dotnet/store/x64/netcoreapp2.0/microsoft.net.http.headers/2.0.1/lib/netstandard2.0/Microsoft.Net.Http.Headers.dll +dotnet/store/x64/netcoreapp2.0/microsoft.rest.clientruntime.azure/3.3.7/lib/netstandard1.4/Microsoft.Rest.ClientRuntime.Azure.dll +dotnet/store/x64/netcoreapp2.0/microsoft.rest.clientruntime/2.3.8/lib/netstandard1.4/Microsoft.Rest.ClientRuntime.dll +dotnet/store/x64/netcoreapp2.0/microsoft.visualstudio.web.browserlink/2.0.0/lib/netstandard2.0/Microsoft.VisualStudio.Web.BrowserLink.dll +dotnet/store/x64/netcoreapp2.0/microsoft.visualstudio.web.browserlink/2.0.1/lib/netstandard2.0/Microsoft.VisualStudio.Web.BrowserLink.dll +dotnet/store/x64/netcoreapp2.0/newtonsoft.json.bson/1.0.1/lib/netstandard1.3/Newtonsoft.Json.Bson.dll +dotnet/store/x64/netcoreapp2.0/newtonsoft.json/10.0.1/lib/netstandard1.3/Newtonsoft.Json.dll +dotnet/store/x64/netcoreapp2.0/remotion.linq/2.1.1/lib/netstandard1.0/Remotion.Linq.dll +dotnet/store/x64/netcoreapp2.0/sqlitepclraw.bundle_green/1.1.7/lib/netcoreapp/SQLitePCLRaw.batteries_green.dll +dotnet/store/x64/netcoreapp2.0/sqlitepclraw.bundle_green/1.1.7/lib/netcoreapp/SQLitePCLRaw.batteries_v2.dll +dotnet/store/x64/netcoreapp2.0/sqlitepclraw.core/1.1.7/lib/netstandard1.1/SQLitePCLRaw.core.dll +dotnet/store/x64/netcoreapp2.0/sqlitepclraw.lib.e_sqlite3.linux/1.1.7/runtimes/linux-x64/native/libe_sqlite3.so +dotnet/store/x64/netcoreapp2.0/sqlitepclraw.provider.e_sqlite3.netstandard11/1.1.7/lib/netstandard1.1/SQLitePCLRaw.provider.e_sqlite3.dll +dotnet/store/x64/netcoreapp2.0/stackexchange.redis.strongname/1.2.4/lib/netstandard1.5/StackExchange.Redis.StrongName.dll +dotnet/store/x64/netcoreapp2.0/system.data.sqlclient/4.4.0/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll +dotnet/store/x64/netcoreapp2.0/system.identitymodel.tokens.jwt/5.1.4/lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll +dotnet/store/x64/netcoreapp2.0/system.interactive.async/3.1.1/lib/netstandard1.3/System.Interactive.Async.dll +dotnet/store/x64/netcoreapp2.0/system.runtime.compilerservices.unsafe/4.4.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll +dotnet/store/x64/netcoreapp2.0/system.security.cryptography.xml/4.4.0/lib/netstandard2.0/System.Security.Cryptography.Xml.dll +dotnet/store/x64/netcoreapp2.0/system.spatial/5.8.2/lib/netstandard1.1/System.Spatial.dll +dotnet/store/x64/netcoreapp2.0/system.text.encoding.codepages/4.4.0/lib/netstandard2.0/System.Text.Encoding.CodePages.dll +dotnet/store/x64/netcoreapp2.0/system.text.encodings.web/4.4.0/lib/netstandard2.0/System.Text.Encodings.Web.dll +dotnet/store/x64/netcoreapp2.0/windowsazure.storage/8.1.4/lib/netstandard1.3/Microsoft.WindowsAzure.Storage.dll +@dir dotnet/sdk/2.1.3/Extensions/cs +@dir dotnet/sdk/2.1.3/Extensions/de +@dir dotnet/sdk/2.1.3/Extensions/es +@dir dotnet/sdk/2.1.3/Extensions/fr +@dir dotnet/sdk/2.1.3/Extensions/it +@dir dotnet/sdk/2.1.3/Extensions/ja +@dir dotnet/sdk/2.1.3/Extensions/ko +@dir dotnet/sdk/2.1.3/Extensions/pl +@dir dotnet/sdk/2.1.3/Extensions/pt-BR +@dir dotnet/sdk/2.1.3/Extensions/ru +@dir dotnet/sdk/2.1.3/Extensions/tr +@dir dotnet/sdk/2.1.3/Extensions/zh-Hans +@dir dotnet/sdk/2.1.3/Extensions/zh-Hant +@dir dotnet/sdk/2.1.3/FSharp/cs +@dir dotnet/sdk/2.1.3/FSharp/de +@dir dotnet/sdk/2.1.3/FSharp/es +@dir dotnet/sdk/2.1.3/FSharp/fr +@dir dotnet/sdk/2.1.3/FSharp/it +@dir dotnet/sdk/2.1.3/FSharp/ja +@dir dotnet/sdk/2.1.3/FSharp/ko +@dir dotnet/sdk/2.1.3/FSharp/pl +@dir dotnet/sdk/2.1.3/FSharp/pt-BR +@dir dotnet/sdk/2.1.3/FSharp/ru +@dir dotnet/sdk/2.1.3/FSharp/tr +@dir dotnet/sdk/2.1.3/FSharp/zh-Hans +@dir dotnet/sdk/2.1.3/FSharp/zh-Hant +@dir dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/tools/netcoreapp1.0/cs +@dir dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/tools/netcoreapp1.0/de +@dir dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/tools/netcoreapp1.0/es +@dir dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/tools/netcoreapp1.0/fr +@dir dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/tools/netcoreapp1.0/it +@dir dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/tools/netcoreapp1.0/ja +@dir dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/tools/netcoreapp1.0/ko +@dir dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/tools/netcoreapp1.0/pl +@dir dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/tools/netcoreapp1.0/pt-BR +@dir dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/tools/netcoreapp1.0/ru +@dir dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/tools/netcoreapp1.0/tr +@dir dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/tools/netcoreapp1.0/zh-Hans +@dir dotnet/sdk/2.1.3/Microsoft/Microsoft.NET.Build.Extensions/tools/netcoreapp1.0/zh-Hant +@dir dotnet/sdk/2.1.3/Roslyn/bincore/cs +@dir dotnet/sdk/2.1.3/Roslyn/bincore/de +@dir dotnet/sdk/2.1.3/Roslyn/bincore/es +@dir dotnet/sdk/2.1.3/Roslyn/bincore/fr +@dir dotnet/sdk/2.1.3/Roslyn/bincore/it +@dir dotnet/sdk/2.1.3/Roslyn/bincore/ja +@dir dotnet/sdk/2.1.3/Roslyn/bincore/ko +@dir dotnet/sdk/2.1.3/Roslyn/bincore/pl +@dir dotnet/sdk/2.1.3/Roslyn/bincore/pt-BR +@dir dotnet/sdk/2.1.3/Roslyn/bincore/ru +@dir dotnet/sdk/2.1.3/Roslyn/bincore/tr +@dir dotnet/sdk/2.1.3/Roslyn/bincore/zh-Hans +@dir dotnet/sdk/2.1.3/Roslyn/bincore/zh-Hant +@dir dotnet/sdk/2.1.3/Roslyn/cs +@dir dotnet/sdk/2.1.3/Roslyn/de +@dir dotnet/sdk/2.1.3/Roslyn/es +@dir dotnet/sdk/2.1.3/Roslyn/fr +@dir dotnet/sdk/2.1.3/Roslyn/it +@dir dotnet/sdk/2.1.3/Roslyn/ja +@dir dotnet/sdk/2.1.3/Roslyn/ko +@dir dotnet/sdk/2.1.3/Roslyn/pl +@dir dotnet/sdk/2.1.3/Roslyn/pt-BR +@dir dotnet/sdk/2.1.3/Roslyn/ru +@dir dotnet/sdk/2.1.3/Roslyn/tr +@dir dotnet/sdk/2.1.3/Roslyn/zh-Hans +@dir dotnet/sdk/2.1.3/Roslyn/zh-Hant +@dir dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/net46/cs +@dir dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/net46/de +@dir dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/net46/es +@dir dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/net46/fr +@dir dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/net46/it +@dir dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/net46/ja +@dir dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/net46/ko +@dir dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/net46/pl +@dir dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/net46/pt-BR +@dir dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/net46/ru +@dir dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/net46/tr +@dir dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/net46/zh-Hans +@dir dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/net46/zh-Hant +@dir dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/cs +@dir dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/de +@dir dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/es +@dir dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/fr +@dir dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/it +@dir dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/ja +@dir dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/ko +@dir dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/pl +@dir dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/pt-BR +@dir dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/ru +@dir dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/tr +@dir dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/zh-Hans +@dir dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk/tools/netcoreapp1.0/zh-Hant +@dir dotnet/sdk/2.1.3/Sdks/Microsoft.NET.Sdk.Publish/tools/net46/en-US +@dir dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/CoreCLR/cs +@dir dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/CoreCLR/de +@dir dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/CoreCLR/es +@dir dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/CoreCLR/fr +@dir dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/CoreCLR/it +@dir dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/CoreCLR/ja +@dir dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/CoreCLR/ko +@dir dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/CoreCLR/pl +@dir dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/CoreCLR/pt-BR +@dir dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/CoreCLR/ru +@dir dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/CoreCLR/tr +@dir dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/CoreCLR/zh-Hans +@dir dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/CoreCLR/zh-Hant +@dir dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/Desktop/cs +@dir dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/Desktop/de +@dir dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/Desktop/es +@dir dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/Desktop/fr +@dir dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/Desktop/it +@dir dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/Desktop/ja +@dir dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/Desktop/ko +@dir dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/Desktop/pl +@dir dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/Desktop/pt-BR +@dir dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/Desktop/ru +@dir dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/Desktop/tr +@dir dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/Desktop/zh-Hans +@dir dotnet/sdk/2.1.3/Sdks/NuGet.Build.Tasks.Pack/Desktop/zh-Hant +@dir dotnet/sdk/2.1.3/TestHost/cs +@dir dotnet/sdk/2.1.3/TestHost/de +@dir dotnet/sdk/2.1.3/TestHost/es +@dir dotnet/sdk/2.1.3/TestHost/fr +@dir dotnet/sdk/2.1.3/TestHost/it +@dir dotnet/sdk/2.1.3/TestHost/ja +@dir dotnet/sdk/2.1.3/TestHost/ko +@dir dotnet/sdk/2.1.3/TestHost/pl +@dir dotnet/sdk/2.1.3/TestHost/pt-BR +@dir dotnet/sdk/2.1.3/TestHost/ru +@dir dotnet/sdk/2.1.3/TestHost/tr +@dir dotnet/sdk/2.1.3/TestHost/zh-Hans +@dir dotnet/sdk/2.1.3/TestHost/zh-Hant +@dir dotnet/sdk/2.1.3/cs +@dir dotnet/sdk/2.1.3/de +@dir dotnet/sdk/2.1.3/en +@dir dotnet/sdk/2.1.3/es +@dir dotnet/sdk/2.1.3/fr +@dir dotnet/sdk/2.1.3/it +@dir dotnet/sdk/2.1.3/ja +@dir dotnet/sdk/2.1.3/ko +@dir dotnet/sdk/2.1.3/pl +@dir dotnet/sdk/2.1.3/pt-BR +@dir dotnet/sdk/2.1.3/ru +@dir dotnet/sdk/2.1.3/tr +@dir dotnet/sdk/2.1.3/zh-Hans +@dir dotnet/sdk/2.1.3/zh-Hant +@dir dotnet/store/x64/netcoreapp2.0/microsoft.data.edm/5.8.2/lib/netstandard1.1/de +@dir dotnet/store/x64/netcoreapp2.0/microsoft.data.edm/5.8.2/lib/netstandard1.1/es +@dir dotnet/store/x64/netcoreapp2.0/microsoft.data.edm/5.8.2/lib/netstandard1.1/fr +@dir dotnet/store/x64/netcoreapp2.0/microsoft.data.edm/5.8.2/lib/netstandard1.1/it +@dir dotnet/store/x64/netcoreapp2.0/microsoft.data.edm/5.8.2/lib/netstandard1.1/ja +@dir dotnet/store/x64/netcoreapp2.0/microsoft.data.edm/5.8.2/lib/netstandard1.1/ko +@dir dotnet/store/x64/netcoreapp2.0/microsoft.data.edm/5.8.2/lib/netstandard1.1/ru +@dir dotnet/store/x64/netcoreapp2.0/microsoft.data.edm/5.8.2/lib/netstandard1.1/zh-Hans +@dir dotnet/store/x64/netcoreapp2.0/microsoft.data.edm/5.8.2/lib/netstandard1.1/zh-Hant +@dir dotnet/store/x64/netcoreapp2.0/microsoft.data.odata/5.8.2/lib/netstandard1.1/de +@dir dotnet/store/x64/netcoreapp2.0/microsoft.data.odata/5.8.2/lib/netstandard1.1/es +@dir dotnet/store/x64/netcoreapp2.0/microsoft.data.odata/5.8.2/lib/netstandard1.1/fr +@dir dotnet/store/x64/netcoreapp2.0/microsoft.data.odata/5.8.2/lib/netstandard1.1/it +@dir dotnet/store/x64/netcoreapp2.0/microsoft.data.odata/5.8.2/lib/netstandard1.1/ja +@dir dotnet/store/x64/netcoreapp2.0/microsoft.data.odata/5.8.2/lib/netstandard1.1/ko +@dir dotnet/store/x64/netcoreapp2.0/microsoft.data.odata/5.8.2/lib/netstandard1.1/ru +@dir dotnet/store/x64/netcoreapp2.0/microsoft.data.odata/5.8.2/lib/netstandard1.1/zh-Hans +@dir dotnet/store/x64/netcoreapp2.0/microsoft.data.odata/5.8.2/lib/netstandard1.1/zh-Hant +@dir dotnet/store/x64/netcoreapp2.0/system.spatial/5.8.2/lib/netstandard1.1/de +@dir dotnet/store/x64/netcoreapp2.0/system.spatial/5.8.2/lib/netstandard1.1/es +@dir dotnet/store/x64/netcoreapp2.0/system.spatial/5.8.2/lib/netstandard1.1/fr +@dir dotnet/store/x64/netcoreapp2.0/system.spatial/5.8.2/lib/netstandard1.1/it +@dir dotnet/store/x64/netcoreapp2.0/system.spatial/5.8.2/lib/netstandard1.1/ja +@dir dotnet/store/x64/netcoreapp2.0/system.spatial/5.8.2/lib/netstandard1.1/ko +@dir dotnet/store/x64/netcoreapp2.0/system.spatial/5.8.2/lib/netstandard1.1/ru +@dir dotnet/store/x64/netcoreapp2.0/system.spatial/5.8.2/lib/netstandard1.1/zh-Hans +@dir dotnet/store/x64/netcoreapp2.0/system.spatial/5.8.2/lib/netstandard1.1/zh-Hant